---
title: "Get Call Snippets"
method: GET
path: "/v1/calls/{call_id}/snippets"
tags: ["calls"]
---

# Get Call Snippets

`GET /v1/calls/{call_id}/snippets`

Retrieve a call's snippets by its ID.

- snippets are sorted by created_at_utc in descending order (newest first)
- media_url is a presigned URL that expires in 24 hours
- transcript_turns are filtered to the snippet time range

## Path parameters

- `call_id` string, required

## Response `200`

Successful Response

- CallSnippet[]
  - `media` CallMedia — Media URL and type for a call.
    - `media_type` 'audio' | 'video'
    - `media_url` string, nullable
  - `start_seconds` integer, required
  - `end_seconds` integer, required
  - `transcript_turns` TranscriptTurn[]
    - `party_id` integer, required
    - `turn_text` string, required
    - `timestamp` string, required

## Other responses

- `401` — Unauthorized - Invalid or missing API key
- `404` — Call not found
- `422` — Validation Error

---

[API](https://skmtc.dev/glyphic/apis/airspeed-api.md) · [All operations](https://skmtc.dev/glyphic/apis/airspeed-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/glyphic/airspeed-api/revisions/af0c369e7360/schema)
