example-data.com

addresses / #203

userId
Wiley Rodriguez @wiley.rodriguez19
label
work
recipient
Gabriel Simonis
street1
75930 Ondricka Loaf
street2
Suite 460
city
Weymouth Town
region
New Hampshire
postalCode
43330-8711
countryAlpha2
NL
isDefault
false
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/203"
)
addresse = res.json()
{
  "id": 203,
  "userId": 151,
  "label": "work",
  "recipient": "Gabriel Simonis",
  "street1": "75930 Ondricka Loaf",
  "street2": "Suite 460",
  "city": "Weymouth Town",
  "region": "New Hampshire",
  "postalCode": "43330-8711",
  "countryAlpha2": "NL",
  "isDefault": false,
  "createdAt": "2024-07-29T04:58:07.082Z"
}
Draftbit