GET
/
import
/
{id}
/
rows
curl --request GET \
  --url https://api.tableflow.com/v1/import/{id}/rows
{}

Retrieve the rows of an import as JSON. This endpoint supports pagination by using a limit/offset. If the limit and offset are not provided, it will return the first 1,000 rows of the import.

To use the limit/offset, start by setting the offset to 0 and the limit to 100 to get the first 100 rows of data. To get the next 100 rows, set the offset to 100 while keeping the limit the same. Continue increasing the offset by 100 until no more rows are returned.

The maximum limit is 1000.

Example Response

[
  {
    "index": 0,
    "values": {
      "age": 23,
      "email": "maria@example.com",
      "first_name": "Maria"
    }
  },
  {
    "index": 1,
    "values": {
      "age": 32,
      "email": "robert@example.com",
      "first_name": "Robert"
    }
  }
]

Path Parameters

id
string
required

Import ID

Query Parameters

offset
integer

Pagination offset

limit
integer

Pagination limit

Response

200 - application/json

The response is of type object.