Developer documentation

REST API v1

Responses and request identifiers

Handle the stable v1 success envelope and use request identifiers for support.

Updated 2026-07-24

Success envelope

Successful v1 responses return data plus meta. List endpoints include pagination metadata when applicable.

Request identifiers

Keep the response request identifier in application logs. It helps SkilaAI trace a request without exposing credentials.

Example success

{
  "data": [],
  "meta": {
    "requestId": "req_01...",
    "pagination": { "page": 1, "limit": 25, "total": 0 }
  }
}