example-data.com

addresses / #147

userId
Earnestine Dickinson @earnestine_dickinson
label
work
recipient
Michael Bahringer
street1
908 O'Conner Place
street2
Apt. 173
city
South Julio
region
Florida
postalCode
86888-9765
countryAlpha2
KE
isDefault
true
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/147"
)
addresse = res.json()
{
  "id": 147,
  "userId": 110,
  "label": "work",
  "recipient": "Michael Bahringer",
  "street1": "908 O'Conner Place",
  "street2": "Apt. 173",
  "city": "South Julio",
  "region": "Florida",
  "postalCode": "86888-9765",
  "countryAlpha2": "KE",
  "isDefault": true,
  "createdAt": "2025-07-08T04:50:28.802Z"
}
Draftbit