example-data.com

addresses / #172

userId
Ludwig Stiedemann @ludwig_stiedemann
label
work
recipient
Jill Runolfsson-Emard
street1
221 Lubowitz Branch
street2
city
Gutmannworth
region
New Mexico
postalCode
28629
countryAlpha2
CO
isDefault
false
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/172"
)
addresse = res.json()
{
  "id": 172,
  "userId": 132,
  "label": "work",
  "recipient": "Jill Runolfsson-Emard",
  "street1": "221 Lubowitz Branch",
  "street2": null,
  "city": "Gutmannworth",
  "region": "New Mexico",
  "postalCode": "28629",
  "countryAlpha2": "CO",
  "isDefault": false,
  "createdAt": "2025-08-17T00:12:08.745Z"
}
Draftbit