example-data.com

addresses / #184

userId
Chyna Kozey @chyna_kozey80
label
other
recipient
Mr. Wilfred Bashirian
street1
3043 Bailey Green
street2
city
Broken Arrow
region
New Jersey
postalCode
71176-0990
countryAlpha2
MA
isDefault
false
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/184"
)
addresse = res.json()
{
  "id": 184,
  "userId": 140,
  "label": "other",
  "recipient": "Mr. Wilfred Bashirian",
  "street1": "3043 Bailey Green",
  "street2": null,
  "city": "Broken Arrow",
  "region": "New Jersey",
  "postalCode": "71176-0990",
  "countryAlpha2": "MA",
  "isDefault": false,
  "createdAt": "2025-02-15T16:46:30.497Z"
}
Draftbit