➕ Create Session

Initiate a new session to begin a conversation. This is typically done at the start of a user's interaction with your application.Medium+2Google GitHub+2Medium+2

Endpoint: POST /sessionsCM.com Developers Portal+3Medium+3Chrome for Developers+3

Request Body:

jsonCopyEdit{
  "user_id": "user123",
  "metadata": {
    "intent": "transfer_tokens"
  }
}

Response:

jsonCopyEdit{
  "id": "session_id_1",
  "created_at": "2025-05-17T09:00:00Z",
  "status": "active"
}

Last updated