---
title: "Get Bridge Phrases"
method: GET
path: "/api/v1/bridge_phrases/{bridge_phrases_id}"
tags: ["bridge_phrases"]
---

# Get Bridge Phrases

`GET /api/v1/bridge_phrases/{bridge_phrases_id}`

Fetch a given bridge phrases config.

## Path parameters

- `bridge_phrases_id` integer, required

## Response `200`

Successful Response

- BridgePhrasesResponse — Response model for bridge phrases operations. A bridge phrases config is a named, sub-org-scoped collection of default bridge phrases plus optional per-tool and per-language overrides that can be linked to an agent. For more information, see [Console docs](https://docs.syllable.ai/Resources/BridgePhrases).
  - `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.

## 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/versions/ac3228f980bb/schema)
