Skip to content

Usage

Query your Skilleo usage and cost estimates.

GET /v1/usage/schema

Public field dictionary. No auth required.

bash
curl -s https://api.skilleo.org/v1/usage/schema

GET /v1/usage

Requires auth.

bash
curl -s "https://api.skilleo.org/v1/usage?limit=50" \
  -H "Authorization: Bearer $SKILLEO_API_KEY"

Query parameters: gpu_type, model, deployment_type, job_type, action, status, since, until, limit (max 500), offset.

Response includes:

  • data.summary — counts, costs, latency percentiles
  • data.quota — daily job and cost limits
  • data.billing — Skilleo subscription vs provider_usage (informational)
  • data.items — row-level records

GET /v1/usage/export

format=json or format=csv. Same filters as list (up to 10,000 rows).

bash
curl -s "https://api.skilleo.org/v1/usage/export?format=csv&limit=1000" \
  -H "Authorization: Bearer $SKILLEO_API_KEY"

Cost fields are estimates. Provider invoices remain the source of truth for GPU and model spend.

Skilleo — /v1 at api.skilleo.org