example-data.com

addresses / #20

userId
Casimir Smitham @casimir_smitham35
label
shipping
recipient
Sally O'Keefe
street1
88213 Pound Lane
street2
city
Marquardtfurt
region
Iowa
postalCode
29593
countryAlpha2
PL
isDefault
false
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/20"
)
addresse = res.json()
{
  "id": 20,
  "userId": 16,
  "label": "shipping",
  "recipient": "Sally O'Keefe",
  "street1": "88213 Pound Lane",
  "street2": null,
  "city": "Marquardtfurt",
  "region": "Iowa",
  "postalCode": "29593",
  "countryAlpha2": "PL",
  "isDefault": false,
  "createdAt": "2025-11-02T04:23:14.421Z"
}
Draftbit