example-data.com

addresses / #238

userId
Gerald Lind @gerald_lind57
label
shipping
recipient
Raul Fahey PhD
street1
91522 Mark Crossroad
street2
city
Doral
region
Minnesota
postalCode
56798
countryAlpha2
AE
isDefault
false
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/238"
)
addresse = res.json()
{
  "id": 238,
  "userId": 179,
  "label": "shipping",
  "recipient": "Raul Fahey PhD",
  "street1": "91522 Mark Crossroad",
  "street2": null,
  "city": "Doral",
  "region": "Minnesota",
  "postalCode": "56798",
  "countryAlpha2": "AE",
  "isDefault": false,
  "createdAt": "2024-12-24T09:57:54.728Z"
}
Draftbit