example-data.com

addresses

addresses

Page 6 of 10.

userId
Myrl Pollich @myrl.pollich
label
home
recipient
Edward Legros
street1
24511 Kayden Islands
street2
city
Mayrabury
region
West Virginia
postalCode
21004-4397
countryAlpha2
DE
isDefault
false
createdAt
userId
Velma Jerde @velma.jerde56
label
home
recipient
Sandy Barrows
street1
6851 Elliott Club
street2
Suite 871
city
Anastasiachester
region
New Mexico
postalCode
50633-3182
countryAlpha2
CO
isDefault
true
createdAt
userId
Camron O'Conner @camron.oconner54
label
home
recipient
Michelle Murray
street1
9218 Elizabeth Streets
street2
city
South Arvilla
region
Illinois
postalCode
09730
countryAlpha2
CA
isDefault
true
createdAt
userId
Matilde Beahan @matilde_beahan
label
home
recipient
Clarence Dooley
street1
84276 Maple Drive
street2
city
Clarksville
region
Kentucky
postalCode
31708-9446
countryAlpha2
IE
isDefault
true
createdAt
userId
Esperanza Casper @esperanza_casper
label
shipping
recipient
Tommy Predovic
street1
8332 Hudson Camp
street2
Suite 355
city
Kokomo
region
Rhode Island
postalCode
02819-3406
countryAlpha2
ID
isDefault
true
createdAt
userId
Esperanza Casper @esperanza_casper
label
shipping
recipient
Chad Mills
street1
58979 Dashawn Parkways
street2
city
Town 'n' Country
region
Maryland
postalCode
77391
countryAlpha2
ET
isDefault
false
createdAt

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/addresses?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/addresses?limit=25"
);
const { data, meta } = await res.json();
import type { Addresse, ListEnvelope } from "https://example-data.com/types/addresses.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/addresses?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Addresse>;
import requests

res = requests.get(
    "https://example-data.com/api/v1/addresses",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 121,
      "userId": 90,
      "label": "home",
      "recipient": "Edward Legros",
      "street1": "24511 Kayden Islands",
      "street2": null,
      "city": "Mayrabury",
      "region": "West Virginia",
      "postalCode": "21004-4397",
      "countryAlpha2": "DE",
      "isDefault": false,
      "createdAt": "2025-02-06T01:59:12.323Z"
    },
    {
      "id": 122,
      "userId": 93,
      "label": "home",
      "recipient": "Sandy Barrows",
      "street1": "6851 Elliott Club",
      "street2": "Suite 871",
      "city": "Anastasiachester",
      "region": "New Mexico",
      "postalCode": "50633-3182",
      "countryAlpha2": "CO",
      "isDefault": true,
      "createdAt": "2024-10-03T02:33:30.817Z"
    },
    {
      "id": 123,
      "userId": 94,
      "label": "home",
      "recipient": "Michelle Murray",
      "street1": "9218 Elizabeth Streets",
      "street2": null,
      "city": "South Arvilla",
      "region": "Illinois",
      "postalCode": "09730",
      "countryAlpha2": "CA",
      "isDefault": true,
      "createdAt": "2024-10-12T21:38:54.117Z"
    }
  ],
  "meta": {
    "page": 6,
    "limit": 24,
    "total": 345,
    "totalPages": 15
  },
  "links": {
    "self": "/api/v1/addresses?page=6",
    "next": "/api/v1/addresses?page=7",
    "prev": "/api/v1/addresses?page=5"
  }
}
Draftbit