Skip to main content
GET
/
api
/
v1
/
logs
/
api
/
{uuid}
Get full detail for a single API request log
curl --request GET \
  --url https://{subdomain}.mihu.ai/api/v1/logs/api/{uuid} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "<string>",
  "data": {
    "uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "method": "<string>",
    "url": "<string>",
    "status_code": 123,
    "token": "<string>",
    "token_name": "<string>",
    "request_body": "<string>",
    "response_body": "<string>",
    "created_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

uuid
string<uuid>
required

UUID from the list endpoint.

Response

API log detail retrieved

success
boolean
message
string
data
object