---
title: "List Calls By User Id Endpoint"
method: GET
path: "/call"
tags: ["Call"]
---

# List Calls By User Id Endpoint

`GET /call`

## Query parameters

- `cursor` string, nullable — Timestamp cursor for pagination (ISO format)
- `limit` integer — Number of records to return
- `search` string, nullable — Search term for filtering calls
- `date_filter` 'today' | 'recent' | 'all'
- `type_filter` 'completed' | 'processing' | 'failed' | 'all'
- `duration_filter` 'short' | 'medium' | 'long' | 'all'

## Headers

- `authorization` string, nullable

## Response `200`

Successful Response

- ListCallsByUserIDResult
  - `user_id` string, uuid, required
  - `calls` MinimalCallResult[], required
    - `call_id` string, uuid, required
    - `start_time` string, date-time, required
    - `end_time` string, date-time, nullable, required
    - `thumbnail` string, nullable, required
    - `duration` integer, nullable, required
    - `title` string, nullable, required
    - `description` string, nullable, required
    - `language` string, nullable, required
  - `next_cursor` string, nullable
  - `has_more` boolean

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/nomi/apis/fastapi.md) · [All operations](https://skmtc.dev/nomi/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/nomi/fastapi/revisions/63a2f545499c/schema)
