example-data.com

addresses / #148

userId
Earnestine Dickinson @earnestine_dickinson
label
shipping
recipient
Geraldine Mitchell
street1
38669 Derwent Close
street2
city
Port Kylershire
region
Virginia
postalCode
32426-8576
countryAlpha2
GB
isDefault
false
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/148"
)
addresse = res.json()
{
  "id": 148,
  "userId": 110,
  "label": "shipping",
  "recipient": "Geraldine Mitchell",
  "street1": "38669 Derwent Close",
  "street2": null,
  "city": "Port Kylershire",
  "region": "Virginia",
  "postalCode": "32426-8576",
  "countryAlpha2": "GB",
  "isDefault": false,
  "createdAt": "2024-07-02T22:33:55.494Z"
}
Draftbit