Helicone Wrapped API

The Wrapped API from Helicone — 2 operation(s) for wrapped.

Operations 2

GET /v1/wrapped/2025 #
GET /v1/wrapped/2025/check #

Documentation

📖
Documentation
https://docs.helicone.ai/
📖
GettingStarted
https://docs.helicone.ai/getting-started/quick-start
📖
APIReference
https://docs.helicone.ai/rest/request/post-v1requestquery
📖
Documentation
https://docs.helicone.ai/gateway/overview
📖
APIReference
https://docs.helicone.ai/rest/ai-gateway/post-v1-chat-completions
📖
Documentation
https://docs.helicone.ai/rest/request/post-v1requestquery
📖
Documentation
https://docs.helicone.ai/rest/prompts/post-v1prompt-2025
📖
Documentation
https://docs.helicone.ai/features/experiments
📖
APIReference
https://docs.helicone.ai/rest/experiment/post-v1experiment-evaluatorsrun
📖
Documentation
https://docs.helicone.ai/rest/evals/post-v1evals
📖
Documentation
https://docs.helicone.ai/features/sessions
📖
APIReference
https://docs.helicone.ai/rest/session/post-v1sessionquery
📖
Documentation
https://docs.helicone.ai/features/advanced-usage/user-metrics
📖
APIReference
https://docs.helicone.ai/rest/user/post-v1userquery
📖
Documentation
https://docs.helicone.ai/features/webhooks
📖
APIReference
https://docs.helicone.ai/rest/webhooks/get-v1webhooks
📖
Documentation
https://docs.helicone.ai/rest/models/get-v1public-model-registry-models
📖
Documentation
https://docs.helicone.ai/rest/trace/post-v1tracelog
📖
Documentation
https://docs.helicone.ai/rest/dashboard/post-v1dashboardscoresquery
📖
Documentation
https://docs.helicone.ai/features/advanced-usage/custom-properties
📖
APIReference
https://docs.helicone.ai/rest/property/post-v1propertyquery

Specifications

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/helicone-wrapped-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

helicone-wrapped-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: helicone-api Agent Wrapped API
  version: 1.0.0
  license:
    name: MIT
  contact: {}
servers:
- url: https://api.helicone.ai/
- url: http://localhost:8585/
tags:
- name: Wrapped
paths:
  /v1/wrapped/2025:
    get:
      operationId: GetWrapped2025Stats
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Result_WrappedStats.string_'
      tags:
      - Wrapped
      security:
      - api_key: []
      parameters: []
  /v1/wrapped/2025/check:
    get:
      operationId: CheckHasWrapped2025Data
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Result__hasData-boolean_.string_'
      tags:
      - Wrapped
      security:
      - api_key: []
      parameters: []
components:
  schemas:
    MostExpensiveRequest:
      properties:
        requestId:
          type: string
        cost:
          type: number
          format: double
        model:
          type: string
        provider:
          type: string
        createdAt:
          type: string
        promptTokens:
          type: number
          format: double
        completionTokens:
          type: number
          format: double
        conversation:
          properties:
            totalWords:
              type: number
              format: double
            turnCount:
              type: number
              format: double
            messages:
              items:
                $ref: '#/components/schemas/ConversationMessage'
              type: array
          required:
          - totalWords
          - turnCount
          - messages
          type:
          - object
          - 'null'
      required:
      - requestId
      - cost
      - model
      - provider
      - createdAt
      - promptTokens
      - completionTokens
      - conversation
      type: object
      additionalProperties: false
    Result__hasData-boolean_.string_:
      anyOf:
      - $ref: '#/components/schemas/ResultSuccess__hasData-boolean__'
      - $ref: '#/components/schemas/ResultError_string_'
    ResultSuccess__hasData-boolean__:
      properties:
        data:
          properties:
            hasData:
              type: boolean
          required:
          - hasData
          type: object
        error:
          type:
          - number
          - 'null'
          enum:
          - null
      required:
      - data
      - error
      type: object
      additionalProperties: false
    ConversationMessage:
      properties:
        role:
          type: string
        content:
          type: string
      required:
      - role
      - content
      type: object
      additionalProperties: false
    WrappedStats:
      properties:
        totalRequests:
          type: number
          format: double
        topProviders:
          items:
            properties:
              count:
                type: number
                format: double
              provider:
                type: string
            required:
            - count
            - provider
            type: object
          type: array
        topModels:
          items:
            properties:
              count:
                type: number
                format: double
              model:
                type: string
            required:
            - count
            - model
            type: object
          type: array
        totalTokens:
          properties:
            total:
              type: number
              format: double
            cacheRead:
              type: number
              format: double
            cacheWrite:
              type: number
              format: double
            completion:
              type: number
              format: double
            prompt:
              type: number
              format: double
          required:
          - total
          - cacheRead
          - cacheWrite
          - completion
          - prompt
          type: object
        mostExpensiveRequest:
          allOf:
          - $ref: '#/components/schemas/MostExpensiveRequest'
      required:
      - totalRequests
      - topProviders
      - topModels
      - totalTokens
      - mostExpensiveRequest
      type: object
      additionalProperties: false
    Result_WrappedStats.string_:
      anyOf:
      - $ref: '#/components/schemas/ResultSuccess_WrappedStats_'
      - $ref: '#/components/schemas/ResultError_string_'
    ResultError_string_:
      properties:
        data:
          type:
          - number
          - 'null'
          enum:
          - null
        error:
          type: string
      required:
      - data
      - error
      type: object
      additionalProperties: false
    ResultSuccess_WrappedStats_:
      properties:
        data:
          $ref: '#/components/schemas/WrappedStats'
        error:
          type:
          - number
          - 'null'
          enum:
          - null
      required:
      - data
      - error
      type: object
      additionalProperties: false
  securitySchemes:
    api_key:
      type: apiKey
      name: Authorization
      in: header
      description: 'Bearer token authentication. Format: ''Bearer YOUR_API_KEY'''