---
title: "List Bridge Phrases"
method: GET
path: "/api/v1/bridge_phrases/"
tags: ["bridge_phrases"]
---

# List Bridge Phrases

`GET /api/v1/bridge_phrases/`

Fetch bridge phrases configs.

## Query parameters

- `page` integer, nullable — The page number from which to start (0-based)
- `limit` integer — The maximum number of items to return
- `search_fields` BridgePhrasesProperties[] — String names of fields to search. Correspond by index to search field values
- `search_field_values` string[] — Values of fields to search. Correspond by index to search fields. Unless field name contains "list", an individual search field value cannot be a list
- `order_by` 'name' | 'description' | 'updated_at' | 'last_updated_by' — Names of bridge phrases fields supported for filtering/sorting on list endpoint.
- `order_by_direction` 'asc' | 'desc' — The direction in which to order list results, either ascending or descending.
- `fields` BridgePhrasesProperties[], nullable — The fields to include in the response
- `start_datetime` string, nullable — The start datetime for filtering results
- `end_datetime` string, nullable — The end datetime for filtering results

## Response `200`

Successful Response

- ListResponseBridgePhrasesResponse
  - `items` BridgePhrasesResponse[], required — List of items returned from the query
    - `name` string, required — The name of the bridge phrases config.
    - `description` string, nullable — Description of the bridge phrases config.
    - `config` BridgePhrasesConfigPayload — The `config` JSONB payload stored on a bridge_phrases row. Holds the default phrases plus an inline list of per-tool overrides, each with optional per-language (`localized`) overrides. Mirrors the shape documented in docs/bridge-phrases-table-migration.md §5.2.
      - `phrases` LibDatabaseDaoOrganizationBridgePhrasesDaoBridgePhraseMessages — Bridge phrase messages for a single scope (default or one tool).
        - `messages` string[] — Ordered bridge phrases for this scope.
        - `localized` object — Per-language overrides keyed by BCP-47 tag (e.g. "es-US").
      - `tools` ToolBridgePhraseConfig[] — Per-tool phrase overrides.
        - `tool_name` string, required — Name of the tool these phrases override.
        - `phrases` LibDatabaseDaoOrganizationBridgePhrasesDaoBridgePhraseMessages, required — Bridge phrase messages for a single scope (default or one tool).
          - `messages` string[] — Ordered bridge phrases for this scope.
          - `localized` object — Per-language overrides keyed by BCP-47 tag (e.g. "es-US").
      - `smart_turn_timeout_seconds` number, nullable — Seconds of caller silence before injecting the first bridge phrase. Defaults to 2.75s when omitted on write.
      - `randomize_bridge_phrases` boolean — Whether to randomize the order of bridge phrases. When true, the order of the bridge phrases is randomized for each call.
    - `is_default` boolean — Whether this config is currently marked as the default for its suborg.
    - `id` integer, required — The ID of the bridge phrases config to update.
    - `edit_comments` string, nullable — Comments for the most recent edit.
    - `agents_info` BridgePhrasesAgentInfo[], nullable — IDs and names of the agents linked to this bridge phrases config.
      - `id` integer, required — The ID of the agent.
      - `name` string, required — The name of the agent.
    - `updated_at` string, date-time, required — Timestamp of the last update.
    - `last_updated_by` string, required — Email of the user who last updated this config.
  - `page` integer, required — The page number of the results (0-based)
  - `page_size` integer, required — The number of items returned per page
  - `total_pages` integer, nullable — The total number of pages of results given the indicated page size
  - `total_count` integer, nullable — The total number of items returned from the query

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/asksyllable/apis/syllablesdk.md) · [All operations](https://skmtc.net/asksyllable/apis/syllablesdk/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/asksyllable/syllablesdk/revisions/534f1f22c775/schema)
