example-data.com

addresses / #194

userId
Jacynthe Sawayn @jacynthe_sawayn71
label
work
recipient
Rodney Langworth II
street1
231 Agustina Heights
street2
city
Lake Princeview
region
Kansas
postalCode
97263-6290
countryAlpha2
NO
isDefault
true
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/addresses/194"
)
addresse = res.json()
{
  "id": 194,
  "userId": 146,
  "label": "work",
  "recipient": "Rodney Langworth II",
  "street1": "231 Agustina Heights",
  "street2": null,
  "city": "Lake Princeview",
  "region": "Kansas",
  "postalCode": "97263-6290",
  "countryAlpha2": "NO",
  "isDefault": true,
  "createdAt": "2024-07-29T20:15:25.979Z"
}
Draftbit