example-data.com

addresses / #32

userId
Melvina Reilly @melvina_reilly83
label
work
recipient
Ms. Martha Romaguera
street1
70305 Alexanne Plains
street2
city
North Jan
region
Rhode Island
postalCode
10918-9710
countryAlpha2
DK
isDefault
true
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/32"
)
addresse = res.json()
{
  "id": 32,
  "userId": 26,
  "label": "work",
  "recipient": "Ms. Martha Romaguera",
  "street1": "70305 Alexanne Plains",
  "street2": null,
  "city": "North Jan",
  "region": "Rhode Island",
  "postalCode": "10918-9710",
  "countryAlpha2": "DK",
  "isDefault": true,
  "createdAt": "2024-11-02T17:01:42.191Z"
}
Draftbit