example-data.com

addresses / #181

userId
Kathleen Lynch @kathleen_lynch1
label
billing
recipient
Gina Nitzsche-Thiel III
street1
8484 Haag Shore
street2
city
East Elsiefurt
region
Michigan
postalCode
98109-6311
countryAlpha2
PL
isDefault
false
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/181"
)
addresse = res.json()
{
  "id": 181,
  "userId": 139,
  "label": "billing",
  "recipient": "Gina Nitzsche-Thiel III",
  "street1": "8484 Haag Shore",
  "street2": null,
  "city": "East Elsiefurt",
  "region": "Michigan",
  "postalCode": "98109-6311",
  "countryAlpha2": "PL",
  "isDefault": false,
  "createdAt": "2025-10-01T05:12:58.599Z"
}
Draftbit