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

Documentation Index

Fetch the complete documentation index at: https://developers.mihu.ai/llms.txt

Use this file to discover all available pages before exploring further.

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

Indicates whether the request completed successfully. True for successful responses; false for documented error responses.

Example:

true

message
string

Human-readable response message. Safe to display in logs or simple client notifications; use structured fields for program logic.

Example:

"Call details retrieved successfully"

data
object