Helicone Status API

The Status API from Helicone — 2 operation(s) for status.

Operations 2

GET /v1/public/status/provider #
GET /v1/public/status/provider/{provider} #

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-status-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-status-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: helicone-api Agent Status API
  version: 1.0.0
  license:
    name: MIT
  contact: {}
servers:
- url: https://api.helicone.ai/
- url: http://localhost:8585/
tags:
- name: Status
paths:
  /v1/public/status/provider:
    get:
      operationId: GetAllProviderStatus
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Result_ProviderMetrics-Array.string_'
      tags:
      - Status
      security:
      - api_key: []
      parameters: []
  /v1/public/status/provider/{provider}:
    get:
      operationId: GetProviderStatus
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Result_ProviderMetrics.string_'
      tags:
      - Status
      security:
      - api_key: []
      parameters:
      - in: path
        name: provider
        required: true
        schema:
          type: string
      - in: query
        name: timeFrame
        required: true
        schema:
          $ref: '#/components/schemas/TimeFrame'
components:
  schemas:
    TimeFrame:
      type: string
      enum:
      - 24h
      - 7d
      - 30d
    ResultSuccess_ProviderMetrics-Array_:
      properties:
        data:
          items:
            $ref: '#/components/schemas/ProviderMetrics'
          type: array
        error:
          type:
          - number
          - 'null'
          enum:
          - null
      required:
      - data
      - error
      type: object
      additionalProperties: false
    ResultSuccess_ProviderMetrics_:
      properties:
        data:
          $ref: '#/components/schemas/ProviderMetrics'
        error:
          type:
          - number
          - 'null'
          enum:
          - null
      required:
      - data
      - error
      type: object
      additionalProperties: false
    ResultError_string_:
      properties:
        data:
          type:
          - number
          - 'null'
          enum:
          - null
        error:
          type: string
      required:
      - data
      - error
      type: object
      additionalProperties: false
    Result_ProviderMetrics-Array.string_:
      anyOf:
      - $ref: '#/components/schemas/ResultSuccess_ProviderMetrics-Array_'
      - $ref: '#/components/schemas/ResultError_string_'
    Result_ProviderMetrics.string_:
      anyOf:
      - $ref: '#/components/schemas/ResultSuccess_ProviderMetrics_'
      - $ref: '#/components/schemas/ResultError_string_'
    MetricsData:
      properties:
        totalRequests:
          type: number
          format: double
        requestCountPrevious24h:
          type: number
          format: double
        requestVolumeChange:
          type: number
          format: double
        errorRate24h:
          type: number
          format: double
        errorRatePrevious24h:
          type: number
          format: double
        errorRateChange:
          type: number
          format: double
        averageLatency:
          type: number
          format: double
        averageLatencyPerToken:
          type: number
          format: double
        latencyChange:
          type: number
          format: double
        latencyPerTokenChange:
          type: number
          format: double
        recentRequestCount:
          type: number
          format: double
        recentErrorCount:
          type: number
          format: double
      required:
      - totalRequests
      - requestCountPrevious24h
      - requestVolumeChange
      - errorRate24h
      - errorRatePrevious24h
      - errorRateChange
      - averageLatency
      - averageLatencyPerToken
      - latencyChange
      - latencyPerTokenChange
      - recentRequestCount
      - recentErrorCount
      type: object
      additionalProperties: false
    TimeSeriesDataPoint:
      properties:
        timestamp:
          type: string
          format: date-time
        errorCount:
          type: number
          format: double
        requestCount:
          type: number
          format: double
        averageLatency:
          type: number
          format: double
        averageLatencyPerCompletionToken:
          type: number
          format: double
      required:
      - timestamp
      - errorCount
      - requestCount
      - averageLatency
      - averageLatencyPerCompletionToken
      type: object
      additionalProperties: false
    ProviderMetrics:
      properties:
        providerName:
          type: string
        metrics:
          allOf:
          - $ref: '#/components/schemas/MetricsData'
          - properties:
              timeSeriesData:
                items:
                  $ref: '#/components/schemas/TimeSeriesDataPoint'
                type: array
            required:
            - timeSeriesData
            type: object
      required:
      - providerName
      - metrics
      type: object
      additionalProperties: false
  securitySchemes:
    api_key:
      type: apiKey
      name: Authorization
      in: header
      description: 'Bearer token authentication. Format: ''Bearer YOUR_API_KEY'''