example-data.com

addresses / #236

userId
Aylin Sanford @aylin.sanford
label
other
recipient
Cristina Bartoletti
street1
7871 Smith Estate
street2
Suite 481
city
Daly City
region
Georgia
postalCode
80640-1862
countryAlpha2
TH
isDefault
false
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/236"
)
addresse = res.json()
{
  "id": 236,
  "userId": 173,
  "label": "other",
  "recipient": "Cristina Bartoletti",
  "street1": "7871 Smith Estate",
  "street2": "Suite 481",
  "city": "Daly City",
  "region": "Georgia",
  "postalCode": "80640-1862",
  "countryAlpha2": "TH",
  "isDefault": false,
  "createdAt": "2025-01-13T00:36:12.275Z"
}
Draftbit