GET
/
chat
cURL
curl --request GET \
  --url https://api.crunchz.app/api/chat \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "<string>",
  "data": [
    "<string>"
  ],
  "meta": {
    "current_page": 1,
    "per_page": 50,
    "total": 150,
    "total_pages": 3,
    "has_next_page": true,
    "has_prev_page": false
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

limit
number

Limit (optional, default: 50)

offset
number

Offset (optional, default: 0)

Response

200
application/json

RecentChatCollection

The response is of type object.