Skip to main content
GET
/
api
/
v1
/
calls
/
{uuid}
Get call details by UUID
curl --request GET \
  --url https://{subdomain}.mindhunters.ai/api/v1/calls/{uuid} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Call details retrieved successfully",
  "data": {
    "uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "handled_by": "AI",
    "duration": 123,
    "status": "in-progress",
    "direction": "Inbound",
    "communication": "<string>",
    "analysis": "<string>",
    "timestamp": "<string>",
    "created_at": "<string>",
    "updated_at": "<string>",
    "agent": {
      "uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>"
    }
  }
}

Authorizations

Authorization
string
header
required

Use a Bearer token to access these API endpoints. Example: "Bearer {your-token}"

Path Parameters

uuid
string<uuid>
required

Call UUID

Response

Success

success
boolean
Example:

true

message
string
Example:

"Call details retrieved successfully"

data
object