example-data.com

addresses / #19

userId
Casimir Smitham @casimir_smitham35
label
shipping
recipient
Joanne Wilkinson
street1
799 Shanahan Run
street2
Suite 469
city
Willfort
region
Georgia
postalCode
61906
countryAlpha2
PE
isDefault
true
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/19"
)
addresse = res.json()
{
  "id": 19,
  "userId": 16,
  "label": "shipping",
  "recipient": "Joanne Wilkinson",
  "street1": "799 Shanahan Run",
  "street2": "Suite 469",
  "city": "Willfort",
  "region": "Georgia",
  "postalCode": "61906",
  "countryAlpha2": "PE",
  "isDefault": true,
  "createdAt": "2025-11-22T02:01:34.563Z"
}
Draftbit