example-data.com

addresses / #75

userId
Autumn Bartell @autumn.bartell95
label
other
recipient
Roderick Ferry
street1
753 Cole Underpass
street2
city
Mayaguez
region
Rhode Island
postalCode
92983-3636
countryAlpha2
SG
isDefault
false
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/75"
)
addresse = res.json()
{
  "id": 75,
  "userId": 58,
  "label": "other",
  "recipient": "Roderick Ferry",
  "street1": "753 Cole Underpass",
  "street2": null,
  "city": "Mayaguez",
  "region": "Rhode Island",
  "postalCode": "92983-3636",
  "countryAlpha2": "SG",
  "isDefault": false,
  "createdAt": "2025-03-24T03:06:45.365Z"
}
Draftbit