curl --request GET \
--url https://api.example.com/v1/companies{
"data": {
"companies": [
{
"id": "<string>",
"name": "<string>",
"industry": "<string>",
"website": "<string>",
"linkedin_url": "<string>",
"size": "<string>",
"domain": "<string>",
"city": "<string>",
"country": "<string>",
"tags": [
{}
],
"created_date": "<string>",
"updated_date": "<string>"
}
]
},
"meta": {}
}Retrieve a paginated list of companies in your workspace
curl --request GET \
--url https://api.example.com/v1/companies{
"data": {
"companies": [
{
"id": "<string>",
"name": "<string>",
"industry": "<string>",
"website": "<string>",
"linkedin_url": "<string>",
"size": "<string>",
"domain": "<string>",
"city": "<string>",
"country": "<string>",
"tags": [
{}
],
"created_date": "<string>",
"updated_date": "<string>"
}
]
},
"meta": {}
}Authorization: Bearer wbk_your_api_key_here
Show properties
Show Company object
page, per_page, totalcurl https://data.leadlex.com/functions/v1/api-gateway/v1/companies \
-H "Authorization: Bearer wbk_your_api_key_here"
{
"data": {
"companies": [
{
"id": "co-001",
"name": "Acme Legal",
"industry": "Legal Services",
"website": "https://acmelegal.com",
"size": "51-200",
"city": "New York",
"country": "US",
"tags": ["enterprise"],
"created_date": "2026-02-01T10:00:00Z"
}
]
},
"meta": { "page": 1, "per_page": 50, "total": 15 }
}
| Status | Code | Description |
|---|---|---|
| 403 | insufficient_permissions | Missing companies:read permission |
| 429 | rate_limited | Rate limit exceeded |