Skip to main content
GET
/
v1
/
replica
/
{id}
/
chats
List Chats
curl --request GET \
  --url https://api.replicas.dev/v1/replica/{id}/chats \
  --header 'Authorization: Bearer <token>'
{
  "chats": [
    {
      "id": "<string>",
      "provider": "claude",
      "title": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "processing": true
    }
  ],
  "waking": true
}

Authorizations

Authorization
string
header
required

API key authentication. Obtain your API key from the Replicas dashboard under Settings > API Keys.

Path Parameters

id
string<uuid>
required

The unique identifier of the replica

Response

Successful response

chats
object[]
required
waking
boolean

If true, the workspace was sleeping and is now waking up. Retry after 30-90 seconds.