Creating an Airtable export URL via API
You can now dynamically create export URLs using our API
Last updated
You can now dynamically create export URLs using our API
Last updated
Login to csvgetter.com and go to Account > CSV API Keys
This can be done by clicking 'Create New CSV Getter Key'. This Key will be stored in the interface and can be used to make requests via our API
API Endpoint: https://api.csvgetter.com/urls/create
HTTP Method: POST
Request Headers
Authorization: Bearer token for authentication ('Bearer <your_csv_getter_key>
').
Type: String (Required)
Content-Type: The content type of the request body.
Type: String (Required)
Value: application/json
Request Body
The request body should be a JSON object containing the following parameters:
base (String): Identifier for the base..
Type: String (Required)
table (String): Identifier for the table.
Type: String (Required)
view (String): Identifier for the view.
Type: String (Optional)
These IDs can be found in your Airtable URL when your table is open:
Example Request
Response Body
The response is a JSON object containing a URL. The URL points to the newly created resource.
URL (String): URL of the created resource.
Type: String
Example Response