---
title: "List Api Requests"
method: POST
path: "/v1/workspace/analytics/requests"
tags: ["access:all"]
---

# List Api Requests

`POST /v1/workspace/analytics/requests`

Returns a list of API requests. Supports filtering by time range, column filters, and search terms. At least one of start_time or end_time must be provided. An optional sort parameter controls timestamp ordering. Results are ordered by timestamp. Descending if end_time is used, ascending if start_time is used. The response is a tabular structure with columns, column_types, column_units, and rows.

## Headers

- `xi-api-key` string, nullable — Your API key. This is required by most endpoints to access our API programmatically. You can view your xi-api-key using the 'Profile' tab on the website.

## Request body

- BodyListAPIRequestsV1WorkspaceAnalyticsRequestsPost
  - `start_time` integer, nullable — Start of the time range as a Unix timestamp in milliseconds.
  - `end_time` integer, nullable — End of the time range as a Unix timestamp in milliseconds.
  - `limit` integer
  - `sort` 'asc' | 'desc', nullable — Optional timestamp sort direction. If omitted, defaults to desc when end_time is provided, otherwise asc.
  - `filters` ColumnFilter[], nullable
    - `column` string, required
    - `operation` 'in' | 'not_in' | 'le' | 'ge' | 'lt' | 'gt' | 'eq' | 'neq', required
    - `values` union[], required
      - union
        - string
        - integer
        - number
        - string, date-time
        - boolean
  - `search` string, nullable

## Response `200`

Successful Response

- WorkspaceAnalyticsQueryResponseModel
  - `columns` string[], required
  - `column_types` string[], required
  - `rows` array[], required
    - union[]
      - union
        - string
        - integer
        - number
        - boolean
        - string, date-time
  - `column_units` ColumnUnit[], required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/elevenlabs/apis/elevenlabs-api-documentation.md) · [All operations](https://skmtc.net/elevenlabs/apis/elevenlabs-api-documentation/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/elevenlabs/elevenlabs-api-documentation/versions/e77a0a530a82/schema)
