example-data.com

addresses / #54

userId
Della Labadie @della_labadie
label
other
recipient
Kim Kassulke IV
street1
82374 Brandyn Row
street2
city
East Ethel
region
Florida
postalCode
46588
countryAlpha2
FR
isDefault
false
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/54"
)
addresse = res.json()
{
  "id": 54,
  "userId": 46,
  "label": "other",
  "recipient": "Kim Kassulke IV",
  "street1": "82374 Brandyn Row",
  "street2": null,
  "city": "East Ethel",
  "region": "Florida",
  "postalCode": "46588",
  "countryAlpha2": "FR",
  "isDefault": false,
  "createdAt": "2025-04-17T20:01:54.042Z"
}
Draftbit