example-data.com

addresses / #3

userId
Charlene Roberts @charlene_roberts
label
home
recipient
Mr. Herbert Upton Jr.
street1
44246 Howard Dam
street2
Apt. 297
city
New Estelle
region
North Dakota
postalCode
19027
countryAlpha2
ES
isDefault
false
createdAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/addresses/3" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/addresses/3"
);
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/3"
);
const addresse = (await res.json()) as Addresse;
import requests

res = requests.get(
    "https://example-data.com/api/v1/addresses/3"
)
addresse = res.json()
{
  "id": 3,
  "userId": 1,
  "label": "home",
  "recipient": "Mr. Herbert Upton Jr.",
  "street1": "44246 Howard Dam",
  "street2": "Apt. 297",
  "city": "New Estelle",
  "region": "North Dakota",
  "postalCode": "19027",
  "countryAlpha2": "ES",
  "isDefault": false,
  "createdAt": "2025-09-19T02:05:30.584Z"
}
Draftbit