Skip to main content
GET
/
lists
/
{listId}
/
items
cURL
curl --request GET \
  --url https://public-api.lonescale.com/lists/{listId}/items \
  --header 'x-api-key: <api-key>'
{
  "items": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "first_name": "<string>",
      "last_name": "<string>",
      "full_name": "<string>",
      "linkedin_url": "<string>",
      "company_name": "<string>",
      "current_position": "<string>",
      "domain": "<string>",
      "location": "<string>",
      "name": "<string>",
      "email": "jsmith@example.com",
      "contact_id": "<string>",
      "createdAt": "2023-11-07T05:31:56Z"
    }
  ],
  "hasNextPage": true,
  "total": 123
}

Authorizations

x-api-key
string
header
required

Provide your API key in the x-api-key header.

Path Parameters

listId
string<uuid>
required

The ID of the list.

Query Parameters

page
integer
default:0

Page number (50 items per page, starts at 0).

Response

Paginated list items

items
object[]
hasNextPage
boolean
total
integer