example-data.com

addresses

addresses

Page 7 of 10.

userId
Elva Roberts @elva.roberts48
label
work
recipient
Erika Fadel
street1
46648 Demond Underpass
street2
city
Scranton
region
Colorado
postalCode
49165
countryAlpha2
SA
isDefault
false
createdAt
userId
Vida Kunde-Koepp @vida_kunde-koepp95
label
work
recipient
Henry Pollich
street1
672 Abdiel Shoals
street2
city
West New York
region
California
postalCode
57402
countryAlpha2
IL
isDefault
true
createdAt
userId
Earnestine Dickinson @earnestine_dickinson
label
work
recipient
Michael Bahringer
street1
908 O'Conner Place
street2
Apt. 173
city
South Julio
region
Florida
postalCode
86888-9765
countryAlpha2
KE
isDefault
true
createdAt
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
userId
Earnestine Dickinson @earnestine_dickinson
label
work
recipient
Blanche Cartwright
street1
278 Mariane Haven
street2
city
Bellevue
region
Arkansas
postalCode
21270-7750
countryAlpha2
NL
isDefault
false
createdAt
userId
Arnaldo Friesen @arnaldo_friesen78
label
billing
recipient
Nathaniel Kuhlman
street1
990 Waverley Road
street2
city
Sammieberg
region
Georgia
postalCode
33874
countryAlpha2
ID
isDefault
true
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": 145,
      "userId": 107,
      "label": "work",
      "recipient": "Erika Fadel",
      "street1": "46648 Demond Underpass",
      "street2": null,
      "city": "Scranton",
      "region": "Colorado",
      "postalCode": "49165",
      "countryAlpha2": "SA",
      "isDefault": false,
      "createdAt": "2025-02-15T20:20:44.345Z"
    },
    {
      "id": 146,
      "userId": 109,
      "label": "work",
      "recipient": "Henry Pollich",
      "street1": "672 Abdiel Shoals",
      "street2": null,
      "city": "West New York",
      "region": "California",
      "postalCode": "57402",
      "countryAlpha2": "IL",
      "isDefault": true,
      "createdAt": "2025-07-09T13:02:19.865Z"
    },
    {
      "id": 147,
      "userId": 110,
      "label": "work",
      "recipient": "Michael Bahringer",
      "street1": "908 O'Conner Place",
      "street2": "Apt. 173",
      "city": "South Julio",
      "region": "Florida",
      "postalCode": "86888-9765",
      "countryAlpha2": "KE",
      "isDefault": true,
      "createdAt": "2025-07-08T04:50:28.802Z"
    }
  ],
  "meta": {
    "page": 7,
    "limit": 24,
    "total": 345,
    "totalPages": 15
  },
  "links": {
    "self": "/api/v1/addresses?page=7",
    "next": "/api/v1/addresses?page=8",
    "prev": "/api/v1/addresses?page=6"
  }
}
Draftbit