example-data.com

addresses / #140

userId
Jermain Kshlerin @jermain_kshlerin51
label
billing
recipient
Carole Steuber
street1
88155 Barn Close
street2
Suite 740
city
Muellerbury
region
Idaho
postalCode
39984-6170
countryAlpha2
FJ
isDefault
false
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/140"
)
addresse = res.json()
{
  "id": 140,
  "userId": 104,
  "label": "billing",
  "recipient": "Carole Steuber",
  "street1": "88155 Barn Close",
  "street2": "Suite 740",
  "city": "Muellerbury",
  "region": "Idaho",
  "postalCode": "39984-6170",
  "countryAlpha2": "FJ",
  "isDefault": false,
  "createdAt": "2026-04-19T10:03:59.480Z"
}
Draftbit