example-data.com

addresses / #57

userId
Maymie Boehm @maymie.boehm90
label
home
recipient
Miss Geraldine Bogisich
street1
9553 W Broadway Avenue
street2
Apt. 817
city
North Estelburgh
region
Wyoming
postalCode
61308
countryAlpha2
IE
isDefault
true
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/57"
)
addresse = res.json()
{
  "id": 57,
  "userId": 48,
  "label": "home",
  "recipient": "Miss Geraldine Bogisich",
  "street1": "9553 W Broadway Avenue",
  "street2": "Apt. 817",
  "city": "North Estelburgh",
  "region": "Wyoming",
  "postalCode": "61308",
  "countryAlpha2": "IE",
  "isDefault": true,
  "createdAt": "2025-02-19T17:48:32.216Z"
}
Draftbit