Skip to main content
GET
/
api
/
v1
/
calls
Get paginated list of calls
curl --request GET \
  --url https://{subdomain}.mihu.ai/api/v1/calls \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Calls retrieved successfully",
  "data": {
    "current_page": 1,
    "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>"
        }
      }
    ],
    "first_page_url": "<string>",
    "last_page": 123,
    "last_page_url": "<string>",
    "next_page_url": "<string>",
    "prev_page_url": "<string>",
    "total": 123
  }
}

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}"

Query Parameters

page
integer
default:1

Page number

per_page
integer
default:15

Number of items per page

agent_id
string<uuid>

Filter by agent UUID

status
enum<string>

Filter by call status

Available options:
in-progress,
ended,
missed,
failed
direction
enum<string>

Filter by call direction

Available options:
Inbound,
Outbound,
webCall

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:

"Calls retrieved successfully"

data
object