---
title: "Search for call recordings by a given filter"
method: POST
path: "/call-recordings/search"
tags: ["call-recordings"]
---

# Search for call recordings by a given filter

`POST /call-recordings/search`

Filterable fields and their allowed operators:

 Field | Allowed operators |
 --- | --- |
 `account_id` | `equals`, `in`, `not_in`, `is_set`, `is_unset` |
 `source` | `equals`, `in`, `not_in` |
 `title` | `equals`, `string_contains` |
 `start_time` | `time_is_after`, `time_is_before`, `time_range` |

Timestamp values use RFC3339 format.

**Rate limit:** 20 requests per minute

## Request body

- SearchCallRecordingsRequest
  - `cursor` string — The cursor to use for pagination.
  - `filter` Filter
    - `field` string, required — The field for this filter. For allowed fields, see the documentation for the specific endpoint you are using. For non-compound filters (any operators other than "and" or "or"), Field must be set, along with either Value or Values, depending on the operator.
    - `operator` 'equals' | 'not_equals' | 'contains' | 'does_not_contain' | 'in' | 'not_in' | 'and' | 'or' | 'time_is_after' | 'time_is_before' | 'time_range' | 'string_contains' | 'string_does_not_contain' | 'is_set' | 'is_unset' | 'greater_than' | 'less_than' | 'greater_than_or_equals' | 'less_than_or_equals', required — The operator for this filter.
    - `subfilters` Filter[] — Sub-filters for this filter. Valid only when operator is "and" or "or". The maximum allowed depth for a tree of filters is 3.
    - `value` string — The value for this filter. Only used for single-valued operators ("equals", "not_equals", "contains", "does_not_contain")
    - `values` string[] — The values for this filter. Only used for multi-valued operators ("in", "not_in").
  - `limit` integer — The number of call recordings to fetch. Defaults to 100. Must be greater than 0 and less than or equal to 1000.

## Response `200`

- SearchCallRecordingsResponseBody
  - `data` CallRecording[] — The data payload of the response.
    - `account_id` string — The account ID associated with the call recording.
    - `calendar_event_id` string — The calendar event ID associated with the call recording.
    - `created_at` string — The creation time of the call recording in RFC3339 format.
    - `custom_fields` object — Custom fields associated with the call recording.
    - `duration_ms` integer — The duration of the call recording in milliseconds.
    - `end_time` string — The end time of the call recording in RFC3339 format.
    - `external_id` string — The external ID of the call recording from the source system.
    - `id` string — The ID of the call recording.
    - `participant_emails` string[] — The participant emails of the call recording.
    - `source` string — The source of the call recording (e.g. fathom, gong, grain, granola, custom_call_recorder).
    - `start_time` string — The start time of the call recording in RFC3339 format.
    - `summary` string — The summary of the call recording.
    - `title` string — The title of the call recording.
    - `updated_at` string — The last update time of the call recording in RFC3339 format.
    - `url` string — The URL of the call recording.
  - `pagination` Pagination
    - `cursor` string, required — The cursor for the next page of results.
    - `has_next_page` boolean, required — Indicates if there is a next page of results.
  - `request_id` string — The request ID for tracking.

## Other responses

- `400` — The request was invalid or could not be completed.
- `500` — An unexpected internal error occurred.

---

[API](https://skmtc.net/usepylon/apis/pylon-api.md) · [All operations](https://skmtc.net/usepylon/apis/pylon-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/usepylon/pylon-api/revisions/cfd9e65e79bb/schema)
