Skip to main content
GET
/
api
/
v1
/
captures
List captures
curl --request GET \
  --url https://api.parable.so/api/v1/captures \
  --header 'Authorization: Bearer <token>'
{
  "captures": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "workspace_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "title": "<string>",
      "summary": "<string>",
      "started_at": "2023-11-07T05:31:56Z",
      "ended_at": "2023-11-07T05:31:56Z",
      "duration_ms": 123,
      "device": {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "name": "<string>"
      },
      "participants": [
        {
          "label": "<string>",
          "name": "<string>",
          "email": "<string>",
          "matched": true,
          "match_confidence": 123,
          "speech_ms": 123
        }
      ],
      "segments": [
        {
          "start_ms": 123,
          "end_ms": 123,
          "speaker": "<string>",
          "text": "<string>"
        }
      ],
      "transcript_text": "<string>",
      "calendar_event": null,
      "emitted_at": "2023-11-07T05:31:56Z"
    }
  ],
  "pageInfo": {
    "endCursor": "<string>",
    "hasNextPage": true
  }
}

Authorizations

Authorization
string
header
required

Workspace API key (parable_...), minted in the Parable app under Settings → API.

Query Parameters

limit
integer
default:50

Page size. Default 50, maximum 100.

Required range: 1 <= x <= 100
after
string

Opaque cursor from a previous response's pageInfo.endCursor. Omit to start from the beginning of history. Treat cursors as black boxes — store and echo them, never interpret them.

Response

A page of captures.

captures
object[]
required
pageInfo
object
required