example-data.com

addresses / #180

userId
Kathleen Lynch @kathleen_lynch1
label
shipping
recipient
Krista Davis
street1
95090 W Broadway Street
street2
city
Gutkowskitown
region
Kentucky
postalCode
72772
countryAlpha2
PH
isDefault
true
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/180"
)
addresse = res.json()
{
  "id": 180,
  "userId": 139,
  "label": "shipping",
  "recipient": "Krista Davis",
  "street1": "95090 W Broadway Street",
  "street2": null,
  "city": "Gutkowskitown",
  "region": "Kentucky",
  "postalCode": "72772",
  "countryAlpha2": "PH",
  "isDefault": true,
  "createdAt": "2025-03-09T02:44:22.063Z"
}
Draftbit