---
title: "List meeting session artifacts"
method: GET
path: "/meeting_sessions/{id}/artifacts"
tags: ["Meeting Session Artifacts"]
---

# List meeting session artifacts

`GET /meeting_sessions/{id}/artifacts`

Returns a list of artifacts for a meeting session.

## Path parameters

- `id` string, required

## Response `200`

Successful response with a list of meeting session artifacts.

- MeetingSessionArtifactListResponse
  - `data` MeetingSessionArtifact[], required
    - `id` string, required
    - `session_id` string, required
    - `type` 'summary' | 'action_items' | 'decisions' | 'topics' | 'open_questions' | 'custom', required
    - `status` 'pending' | 'completed' | 'failed', required
    - `content` ArtifactContent, required
      - `text` string, required
    - `model_provenance` ModelProvenance, required
      - `model` string, required
      - `provider` string, required
    - `failure_reason` string, nullable, required
    - `created_at` string, date-time, required
    - `updated_at` string, date-time, required
    - `prompt` string, nullable, required — The prompt that produced this artifact, or null for a named type. Non-null only when `type` is `custom`; the five named types always return `null`.

## Other responses

- `401` — Unauthorized. On api.telnyx.com, authentication is enforced by the API gateway before the request reaches the Meeting service, so a missing or invalid API key returns the standard Telnyx error envelope (`{"errors": [{"code": "10009", ...}]}`) rather than the single-`error` shape below.
- `403` — The authenticated credential is not permitted to perform this operation.
- `404` — Not Found
- `429` — Authentication is temporarily overloaded. Retry after the number of seconds in `Retry-After`.
- `500` — Internal Server Error
- `503` — Authentication is temporarily unavailable.

## Changes

> 99 revisions in range; 1 not diffed.

- **2026-09-23** `cdb64ddf086f` — 4 warning, 1 info
  - added the new `custom` enum value to the `data/items/type` response property for the response status `200`
  - added the new `decisions` enum value to the `data/items/type` response property for the response status `200`
  - added the new `open_questions` enum value to the `data/items/type` response property for the response status `200`
  - added the new `topics` enum value to the `data/items/type` response property for the response status `200`
  - …1 more
- **2026-08-17** `1571b0380bd7` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/team-telnyx/apis/telnyx-api-2/changes/meeting_sessions/:id/artifacts/get.md)

---

[API](https://skmtc.dev/team-telnyx/apis/telnyx-api-2.md) · [All operations](https://skmtc.dev/team-telnyx/apis/telnyx-api-2/llms.txt) · [OpenAPI document](https://skmtc.dev/team-telnyx/apis/telnyx-api-2/revisions/227c33b1ac9c?raw)
