example-data.com

addresses / #149

userId
Earnestine Dickinson @earnestine_dickinson
label
work
recipient
Blanche Cartwright
street1
278 Mariane Haven
street2
city
Bellevue
region
Arkansas
postalCode
21270-7750
countryAlpha2
NL
isDefault
false
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/149"
)
addresse = res.json()
{
  "id": 149,
  "userId": 110,
  "label": "work",
  "recipient": "Blanche Cartwright",
  "street1": "278 Mariane Haven",
  "street2": null,
  "city": "Bellevue",
  "region": "Arkansas",
  "postalCode": "21270-7750",
  "countryAlpha2": "NL",
  "isDefault": false,
  "createdAt": "2025-01-08T01:37:25.275Z"
}
Draftbit