example-data.com

addresses

addresses

Page 10 of 10.

userId
Nikolas Wolf @nikolas.wolf
label
other
recipient
Bennie O'Hara
street1
558 Buckingham Road
street2
city
Fort Francisca
region
Vermont
postalCode
70182
countryAlpha2
ES
isDefault
false
createdAt
userId
Amparo Dietrich @amparo.dietrich
label
work
recipient
Miss Meredith Will
street1
6435 Evie Fall
street2
Apt. 992
city
New Keely
region
Maryland
postalCode
96253
countryAlpha2
CA
isDefault
true
createdAt
userId
Amparo Dietrich @amparo.dietrich
label
billing
recipient
Mr. Armando Wisoky
street1
30241 Hahn Orchard
street2
city
Gerholdside
region
Rhode Island
postalCode
36443
countryAlpha2
KR
isDefault
false
createdAt
userId
Brock Hackett @brock.hackett
label
work
recipient
Wilbur Kohler
street1
956 Prospect Street
street2
Apt. 150
city
North Susan
region
Maine
postalCode
82053
countryAlpha2
ZA
isDefault
true
createdAt
userId
Brock Hackett @brock.hackett
label
billing
recipient
Israel Mitchell
street1
59867 Angeline Extensions
street2
Apt. 730
city
Devantetown
region
Tennessee
postalCode
63227-1835
countryAlpha2
AU
isDefault
false
createdAt
userId
Brock Hackett @brock.hackett
label
other
recipient
Mr. Edmond Kemmer
street1
958 Daphnee Via
street2
city
Tryciaboro
region
Illinois
postalCode
72993
countryAlpha2
PK
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": 217,
      "userId": 158,
      "label": "other",
      "recipient": "Bennie O'Hara",
      "street1": "558 Buckingham Road",
      "street2": null,
      "city": "Fort Francisca",
      "region": "Vermont",
      "postalCode": "70182",
      "countryAlpha2": "ES",
      "isDefault": false,
      "createdAt": "2024-10-23T20:35:01.012Z"
    },
    {
      "id": 218,
      "userId": 159,
      "label": "work",
      "recipient": "Miss Meredith Will",
      "street1": "6435 Evie Fall",
      "street2": "Apt. 992",
      "city": "New Keely",
      "region": "Maryland",
      "postalCode": "96253",
      "countryAlpha2": "CA",
      "isDefault": true,
      "createdAt": "2025-04-10T22:32:23.210Z"
    },
    {
      "id": 219,
      "userId": 159,
      "label": "billing",
      "recipient": "Mr. Armando Wisoky",
      "street1": "30241 Hahn Orchard",
      "street2": null,
      "city": "Gerholdside",
      "region": "Rhode Island",
      "postalCode": "36443",
      "countryAlpha2": "KR",
      "isDefault": false,
      "createdAt": "2025-12-09T10:39:33.408Z"
    }
  ],
  "meta": {
    "page": 10,
    "limit": 24,
    "total": 345,
    "totalPages": 15
  },
  "links": {
    "self": "/api/v1/addresses?page=10",
    "next": "/api/v1/addresses?page=11",
    "prev": "/api/v1/addresses?page=9"
  }
}
Draftbit