example-data.com

addresses / #38

userId
Izaiah Rempel @izaiah_rempel
label
other
recipient
Miss Delia Stokes
street1
8641 Greenway
street2
city
Florissant
region
New Jersey
postalCode
64653
countryAlpha2
VN
isDefault
true
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/38"
)
addresse = res.json()
{
  "id": 38,
  "userId": 31,
  "label": "other",
  "recipient": "Miss Delia Stokes",
  "street1": "8641 Greenway",
  "street2": null,
  "city": "Florissant",
  "region": "New Jersey",
  "postalCode": "64653",
  "countryAlpha2": "VN",
  "isDefault": true,
  "createdAt": "2025-08-11T00:16:16.315Z"
}
Draftbit