example-data.com

addresses / #141

userId
Jermain Kshlerin @jermain_kshlerin51
label
other
recipient
Bryan Farrell
street1
236 Clifton Branch
street2
city
Turcottechester
region
Iowa
postalCode
72257
countryAlpha2
FJ
isDefault
false
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/141"
)
addresse = res.json()
{
  "id": 141,
  "userId": 104,
  "label": "other",
  "recipient": "Bryan Farrell",
  "street1": "236 Clifton Branch",
  "street2": null,
  "city": "Turcottechester",
  "region": "Iowa",
  "postalCode": "72257",
  "countryAlpha2": "FJ",
  "isDefault": false,
  "createdAt": "2025-09-12T15:34:54.367Z"
}
Draftbit