# Generated Endpoints

When a dataset is processed, FireCSV generates a read-only REST API endpoint.

# Base URL

https://api.firecsv.com/v1/data/{dataset-id}

# Query Parameters

Parameter Description Example
limit Max rows to return (default 25, max 1000) ?limit=50
offset Number of rows to skip ?offset=100
sort Column to sort by ?sort=name
order Sort direction (asc/desc) ?order=desc
{column} Filter by column value ?status=active

# Response Format

{
  "data": [...],
  "meta": {
    "total": 1234,
    "limit": 25,
    "offset": 0
  }
}