example-data.com

addresses / #176

userId
Glenna Keebler @glenna_keebler
label
billing
recipient
Hattie Jacobs
street1
726 Sycamore Street
street2
city
South Thealand
region
Wisconsin
postalCode
66354-6259
countryAlpha2
FJ
isDefault
false
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/176"
)
addresse = res.json()
{
  "id": 176,
  "userId": 134,
  "label": "billing",
  "recipient": "Hattie Jacobs",
  "street1": "726 Sycamore Street",
  "street2": null,
  "city": "South Thealand",
  "region": "Wisconsin",
  "postalCode": "66354-6259",
  "countryAlpha2": "FJ",
  "isDefault": false,
  "createdAt": "2024-08-10T01:27:50.767Z"
}
Draftbit