API V1
Exports
Retrieve data from a specific export configuration.
Get export data
"Download your data."
Use this endpoint to retrieve the execution results of an existing Export configuration. This allows you to fetch cleaned, enriched, and standardized data programmatically.
- Endpoint: GET /api/export/{exportId}
- Method: GET
- Description: Retrieves data for a specific export.
Parameters
- exportId (Required): The ID of the export to retrieve.
- page (Optional): Page number (default: 1).
- limit (Optional): Number of items per page (default: 100).
Response
1{
2 "success": true,
3 "data": {
4 "items": [
5 {
6 "company": "Acme Corp",
7 "website": "acme.com",
8 ...
9 }
10 ],
11 "total_count": 145
12 }
13}