example-data.com

addresses / #53

userId
Della Labadie @della_labadie
label
work
recipient
Jack Breitenberg-Emmerich
street1
5351 Harris Keys
street2
Apt. 341
city
Lake Kelly
region
Illinois
postalCode
56137
countryAlpha2
AE
isDefault
false
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/53"
)
addresse = res.json()
{
  "id": 53,
  "userId": 46,
  "label": "work",
  "recipient": "Jack Breitenberg-Emmerich",
  "street1": "5351 Harris Keys",
  "street2": "Apt. 341",
  "city": "Lake Kelly",
  "region": "Illinois",
  "postalCode": "56137",
  "countryAlpha2": "AE",
  "isDefault": false,
  "createdAt": "2024-11-20T07:44:35.507Z"
}
Draftbit