example-data.com

addresses / #55

userId
Lacy Gusikowski @lacy.gusikowski
label
billing
recipient
Guadalupe Nienow-Rosenbaum
street1
392 Ferry Lake
street2
city
Huntersville
region
South Dakota
postalCode
21497-1679
countryAlpha2
CA
isDefault
true
createdAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/addresses/55" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/addresses/55"
);
const addresse = await res.json();
import type { Addresse } from "https://example-data.com/types/addresses.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/addresses/55"
);
const addresse = (await res.json()) as Addresse;
import requests

res = requests.get(
    "https://example-data.com/api/v1/addresses/55"
)
addresse = res.json()
{
  "id": 55,
  "userId": 47,
  "label": "billing",
  "recipient": "Guadalupe Nienow-Rosenbaum",
  "street1": "392 Ferry Lake",
  "street2": null,
  "city": "Huntersville",
  "region": "South Dakota",
  "postalCode": "21497-1679",
  "countryAlpha2": "CA",
  "isDefault": true,
  "createdAt": "2025-07-07T21:12:31.566Z"
}
Draftbit