example-data.com

addresses / #150

userId
Arnaldo Friesen @arnaldo_friesen78
label
billing
recipient
Nathaniel Kuhlman
street1
990 Waverley Road
street2
city
Sammieberg
region
Georgia
postalCode
33874
countryAlpha2
ID
isDefault
true
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/150"
)
addresse = res.json()
{
  "id": 150,
  "userId": 113,
  "label": "billing",
  "recipient": "Nathaniel Kuhlman",
  "street1": "990 Waverley Road",
  "street2": null,
  "city": "Sammieberg",
  "region": "Georgia",
  "postalCode": "33874",
  "countryAlpha2": "ID",
  "isDefault": true,
  "createdAt": "2024-06-13T20:01:05.558Z"
}
Draftbit