GET
/
api
/
conversation
/
list
curl --location \
--request GET 'https://api.delphi.ai/api/conversation/list?slug=clone-slug&[email protected]' \
--header 'x-api-key: <key>' 
{
  "conversations": [
        {
            "id": "b4177da8-40fc-4e5f-9c26-f7915d7e35e3",
            "title": "Tell me about yourself",
            "created_at": "2023-06-04T15:30:23+00:00",
        },
    ]
}

Query

slug
string

The slug of your clone

email
string

The email of the user

Response

conversations
Conversation array

History of the conversation between a user and a clone in chronological order

curl --location \
--request GET 'https://api.delphi.ai/api/conversation/list?slug=clone-slug&[email protected]' \
--header 'x-api-key: <key>' 
{
  "conversations": [
        {
            "id": "b4177da8-40fc-4e5f-9c26-f7915d7e35e3",
            "title": "Tell me about yourself",
            "created_at": "2023-06-04T15:30:23+00:00",
        },
    ]
}