example-data.com

addresses

addresses

Page 3 of 10.

userId
Margaretta Barrows @margaretta_barrows41
label
work
recipient
Lorenzo Schoen
street1
7958 Elouise Cliff
street2
Apt. 801
city
New Fannie
region
California
postalCode
29589
countryAlpha2
NG
isDefault
false
createdAt
userId
Gwendolyn Wyman @gwendolyn.wyman87
label
shipping
recipient
Philip Rempel MD
street1
827 8th Street
street2
Suite 945
city
Marquardttown
region
Virginia
postalCode
77724-4127
countryAlpha2
CL
isDefault
true
createdAt
userId
Trace Witting-Stamm @trace_witting-stamm17
label
billing
recipient
Miss Jacqueline Feeney
street1
5943 Narciso Spur
street2
city
Joannyton
region
South Carolina
postalCode
61466
countryAlpha2
BR
isDefault
true
createdAt
userId
Della Labadie @della_labadie
label
billing
recipient
Loretta Wehner
street1
14542 Marilou Manor
street2
city
Lake Tonyburgh
region
Kentucky
postalCode
89869-0239
countryAlpha2
NO
isDefault
true
createdAt
userId
Della Labadie @della_labadie
label
work
recipient
Jack Breitenberg-Emmerich
street1
5351 Harris Keys
street2
Apt. 341
city
Lake Kelly
region
Illinois
postalCode
56137
countryAlpha2
AE
isDefault
false
createdAt
userId
Della Labadie @della_labadie
label
other
recipient
Kim Kassulke IV
street1
82374 Brandyn Row
street2
city
East Ethel
region
Florida
postalCode
46588
countryAlpha2
FR
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": 49,
      "userId": 39,
      "label": "work",
      "recipient": "Lorenzo Schoen",
      "street1": "7958 Elouise Cliff",
      "street2": "Apt. 801",
      "city": "New Fannie",
      "region": "California",
      "postalCode": "29589",
      "countryAlpha2": "NG",
      "isDefault": false,
      "createdAt": "2025-10-16T10:15:03.322Z"
    },
    {
      "id": 50,
      "userId": 40,
      "label": "shipping",
      "recipient": "Philip Rempel MD",
      "street1": "827 8th Street",
      "street2": "Suite 945",
      "city": "Marquardttown",
      "region": "Virginia",
      "postalCode": "77724-4127",
      "countryAlpha2": "CL",
      "isDefault": true,
      "createdAt": "2024-12-26T00:36:33.914Z"
    },
    {
      "id": 51,
      "userId": 42,
      "label": "billing",
      "recipient": "Miss Jacqueline Feeney",
      "street1": "5943 Narciso Spur",
      "street2": null,
      "city": "Joannyton",
      "region": "South Carolina",
      "postalCode": "61466",
      "countryAlpha2": "BR",
      "isDefault": true,
      "createdAt": "2025-12-20T04:26:14.578Z"
    }
  ],
  "meta": {
    "page": 3,
    "limit": 24,
    "total": 345,
    "totalPages": 15
  },
  "links": {
    "self": "/api/v1/addresses?page=3",
    "next": "/api/v1/addresses?page=4",
    "prev": "/api/v1/addresses?page=2"
  }
}
Draftbit