Skip to main content
GET
/
bridge
/
api
/
v1
/
workspaces
/
{workspaceId}
/
conversations
Retrieve conversations with flexible filtering options
curl --request GET \
  --url https://api-connect-us.bridge.new/bridge/api/v1/workspaces/{workspaceId}/conversations \
  --header 'x-api-key: <x-api-key>'
{
  "conversations": [
    {
      "id": "b6cf1c4a-2b1e-4e63-8f3e-0f9d1a2a1234",
      "workspaceId": "b6cf1c4a-2b1e-4e63-8f3e-0f9d1a2a1234",
      "participants": {
        "externals": [
          {
            "identifier": "<string>",
            "identifierType": "ID",
            "role": "INTERNAL",
            "joinedAt": "2025-09-19T18:25:43Z",
            "lastSeenAt": "2025-09-19T18:25:43Z"
          }
        ],
        "internals": [
          {
            "identifier": "<string>",
            "identifierType": "ID",
            "role": "INTERNAL",
            "joinedAt": "2025-09-19T18:25:43Z",
            "lastSeenAt": "2025-09-19T18:25:43Z"
          }
        ]
      },
      "createdAt": "2025-09-19T18:25:43Z",
      "updatedAt": "2025-09-19T18:25:43Z",
      "name": "b6cf1c4a-2b1e-4e63-8f3e-0f9d1a2a1234",
      "status": "ACTIVE"
    }
  ],
  "cursor": "<string>"
}

Headers

x-api-key
string
required

Copy the API key as provided by the Bridge Console.

Path Parameters

workspaceId
string<uuid>
required

Unique identifier of the workspace (UUID v4).

Query Parameters

limit
integer
default:20

Number of conversations per page

Required range: 1 <= x <= 100
cursor
string | null

Cursor provided on before request to get next page

status
enum<string>

Conversation status

Available options:
ACTIVE,
GHOST
internalUserIdentifier
string | null

Identifier of internal user, if you are sending a phone number take care to encode the request url (including params)

internalUserIdentifierType
enum<string>
Available options:
ID,
EMAIL
externalUserIdentifier
string | null
externalUserIdentifierType
enum<string>
Available options:
ID,
EMAIL,
PHONE

Response

Successful Response

conversations
ConversationResponse · object[]
required
cursor
string | null
required