Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
vm0-ai avatar

Helicone

  • 33 installs
  • 76 repo stars
  • Updated August 4, 2026
  • vm0-ai/vm0-skills

Helps with ai & agent building tasks during AI-assisted development.

About

helicone is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.

  • helicone
  • AI & Agent Building
  • AI-coding skill

Helicone by the numbers

  • 33 all-time installs (skills.sh)
  • Ranked #8,975 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/vm0-ai/vm0-skills --skill helicone

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs33
repo stars76
Last updatedAugust 4, 2026
Repositoryvm0-ai/vm0-skills

What it does

Helps with ai & agent building tasks during AI-assisted development.

Files

SKILL.mdMarkdownGitHub ↗

Troubleshooting

If requests fail, run zero doctor check-connector --env-name HELICONE_TOKEN or zero doctor check-connector --url https://api.helicone.ai/v1/request --method GET

Authentication

All requests require a Bearer token in the Authorization header:

Authorization: Bearer $HELICONE_TOKEN

Get your API key from: helicone.ai → Settings → API Keys → create a new key.

Environment Variables

VariableDescription
HELICONE_TOKENHelicone API key (starts with sk-helicone-)

Key Endpoints

Base URL: https://api.helicone.ai

1. List Requests

POST /v1/request/query

Fetch LLM request logs with filtering, pagination, and sorting.

Write to /tmp/helicone_request.json:

{
  "limit": 10,
  "offset": 0,
  "sort": {
    "created_at": "desc"
  }
}

Then run:

curl -s -X POST "https://api.helicone.ai/v1/request/query" --header "Authorization: Bearer $HELICONE_TOKEN" --header "Content-Type: application/json" -d @/tmp/helicone_request.json

Response includes data array with request_id, model, prompt_tokens, completion_tokens, latency, cost, created_at, and the full request/response bodies.

2. Filter Requests by Model

Write to /tmp/helicone_request.json:

{
  "limit": 25,
  "offset": 0,
  "filter": {
    "request": {
      "model": {
        "contains": "gpt-4"
      }
    }
  },
  "sort": {
    "created_at": "desc"
  }
}

Then run:

curl -s -X POST "https://api.helicone.ai/v1/request/query" --header "Authorization: Bearer $HELICONE_TOKEN" --header "Content-Type: application/json" -d @/tmp/helicone_request.json

3. Filter Requests by Date Range

Write to /tmp/helicone_request.json:

{
  "limit": 100,
  "offset": 0,
  "filter": {
    "request": {
      "created_at": {
        "gte": "2024-01-01T00:00:00Z",
        "lte": "2024-12-31T23:59:59Z"
      }
    }
  },
  "sort": {
    "created_at": "desc"
  }
}

Then run:

curl -s -X POST "https://api.helicone.ai/v1/request/query" --header "Authorization: Bearer $HELICONE_TOKEN" --header "Content-Type: application/json" -d @/tmp/helicone_request.json

4. Filter Requests by User

Write to /tmp/helicone_request.json:

{
  "limit": 25,
  "offset": 0,
  "filter": {
    "request": {
      "user_id": {
        "equals": "<your-user-id>"
      }
    }
  }
}

Then run:

curl -s -X POST "https://api.helicone.ai/v1/request/query" --header "Authorization: Bearer $HELICONE_TOKEN" --header "Content-Type: application/json" -d @/tmp/helicone_request.json

5. Get Aggregated Cost Stats

POST /v1/request/query

Use aggregation fields to compute total cost and token usage over a time window.

Write to /tmp/helicone_request.json:

{
  "limit": 1000,
  "offset": 0,
  "filter": {
    "request": {
      "created_at": {
        "gte": "2024-01-01T00:00:00Z"
      }
    }
  },
  "sort": {
    "created_at": "desc"
  }
}

Then run:

curl -s -X POST "https://api.helicone.ai/v1/request/query" --header "Authorization: Bearer $HELICONE_TOKEN" --header "Content-Type: application/json" -d @/tmp/helicone_request.json | jq '[.data[] | {model: .model, cost: .cost_usd, prompt_tokens: .prompt_tokens, completion_tokens: .completion_tokens}]'

6. Get a Single Request

GET /v1/request/<request-id>

Retrieve the full details of a specific request by ID.

curl -s "https://api.helicone.ai/v1/request/<request-id>" --header "Authorization: Bearer $HELICONE_TOKEN"

Replace <request-id> with the UUID returned in a query response.

7. List Properties (Custom Metadata Keys)

GET /v1/property/query

List all custom property keys used across your requests.

curl -s "https://api.helicone.ai/v1/property/query" --header "Authorization: Bearer $HELICONE_TOKEN"

8. Filter Requests by Custom Property

Write to /tmp/helicone_request.json:

{
  "limit": 25,
  "offset": 0,
  "filter": {
    "properties": {
      "<your-property-key>": {
        "equals": "<your-property-value>"
      }
    }
  }
}

Then run:

curl -s -X POST "https://api.helicone.ai/v1/request/query" --header "Authorization: Bearer $HELICONE_TOKEN" --header "Content-Type: application/json" -d @/tmp/helicone_request.json

9. Get Usage Over Time (Dashboard Stats)

POST /v1/request/query

To compute cost per day, group results by date client-side:

Write to /tmp/helicone_request.json:

{
  "limit": 500,
  "offset": 0,
  "filter": {
    "request": {
      "created_at": {
        "gte": "2024-01-01T00:00:00Z"
      }
    }
  },
  "sort": {
    "created_at": "asc"
  }
}

Then run:

curl -s -X POST "https://api.helicone.ai/v1/request/query" --header "Authorization: Bearer $HELICONE_TOKEN" --header "Content-Type: application/json" -d @/tmp/helicone_request.json | jq 'group_by(.created_at[:10]) | map({date: .[0].created_at[:10], total_cost: (map(.cost_usd // 0) | add), requests: length})'

Common Workflows

Audit LLM Spend by Model

curl -s -X POST "https://api.helicone.ai/v1/request/query" --header "Authorization: Bearer $HELICONE_TOKEN" --header "Content-Type: application/json" -d @/tmp/helicone_request.json | jq 'group_by(.model) | map({model: .[0].model, total_cost: (map(.cost_usd // 0) | add), request_count: length, avg_latency_ms: (map(.latency // 0) | add / length | floor)})'

Find Slowest Requests

Write to /tmp/helicone_request.json:

{
  "limit": 20,
  "offset": 0,
  "sort": {
    "latency": "desc"
  }
}

Then run:

curl -s -X POST "https://api.helicone.ai/v1/request/query" --header "Authorization: Bearer $HELICONE_TOKEN" --header "Content-Type: application/json" -d @/tmp/helicone_request.json | jq '[.data[] | {request_id: .request_id, model: .model, latency_ms: .latency, created_at: .created_at}]'

Find Most Expensive Requests

Write to /tmp/helicone_request.json:

{
  "limit": 20,
  "offset": 0,
  "sort": {
    "cost": "desc"
  }
}

Then run:

curl -s -X POST "https://api.helicone.ai/v1/request/query" --header "Authorization: Bearer $HELICONE_TOKEN" --header "Content-Type: application/json" -d @/tmp/helicone_request.json | jq '[.data[] | {request_id: .request_id, model: .model, cost_usd: .cost_usd, prompt_tokens: .prompt_tokens, completion_tokens: .completion_tokens}]'

Response Fields Reference

FieldTypeDescription
request_idstringUnique request UUID
modelstringLLM model name (e.g. gpt-4o)
prompt_tokensnumberInput token count
completion_tokensnumberOutput token count
latencynumberResponse time in milliseconds
cost_usdnumberEstimated cost in USD
created_atstringISO 8601 timestamp
user_idstringUser identifier (set via Helicone-User-Id header)
propertiesobjectCustom key-value metadata set at request time
statusnumberHTTP status code returned by the LLM provider

Guidelines

1. Pagination: Use limit and offset for large result sets; max limit is 1000 per request 2. Cost accuracy: cost_usd is an estimate based on published model pricing — actual billing may differ 3. Custom properties: Set Helicone-Property-* headers in your LLM proxy calls to attach searchable metadata 4. User tracking: Set Helicone-User-Id header to attribute costs and requests to individual users 5. Rate limits: Default rate limits apply; implement exponential backoff on 429 responses

API Reference

  • Documentation: https://docs.helicone.ai/rest/request/get-v1requests
  • Dashboard: https://helicone.ai
  • API Keys: https://helicone.ai/settings/api-keys

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.