example-data.com

addresses / #113

userId
Phyllis Hyatt @phyllis_hyatt83
label
billing
recipient
Shawn Harber
street1
13413 Dayton Cliff
street2
Apt. 672
city
Canton
region
New Jersey
postalCode
96186
countryAlpha2
FI
isDefault
false
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/113"
)
addresse = res.json()
{
  "id": 113,
  "userId": 84,
  "label": "billing",
  "recipient": "Shawn Harber",
  "street1": "13413 Dayton Cliff",
  "street2": "Apt. 672",
  "city": "Canton",
  "region": "New Jersey",
  "postalCode": "96186",
  "countryAlpha2": "FI",
  "isDefault": false,
  "createdAt": "2025-11-06T11:49:04.308Z"
}
Draftbit