v1

latestOpenAPI 3.0.3Proprietary2026-08-0656136286.9 KB
Contacts Tables

Get Contacts Table Entities

Read a page of rows in the table, with all column values and per-cell status.

Billing: Charged per row returned via export_api.

get/v3/contacts/tables/{table_id}/entities

Path parameters

table_idstring required

The table's ID.

Query parameters

emailstring email

Email of the user making the request. Used to scope ownership/visibility checks on GET/DELETE calls, which cannot carry a body.

pageinteger
sizeinteger

Response

Successful response

Example response

{
  "data": [
    {
      "id": "v1.aB3kZ9example",
      "columns": [
        {
          "id": "f8c1a2b3",
          "name": "company_name",
          "type": "string",
          "sourceType": "lusha",
          "value": "Google"
        }
      ]
    }
  ],
  "pagination": {
    "size": 25
  },
  "billing": {
    "creditsCharged": 3,
    "resultsReturned": 1
  }
}