Companies Tables
Get Companies 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/companies/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
}
}