Helicone Request API

The Request API from Helicone — 10 operation(s) for request.

Operations 10

POST /v1/request/count/query #
POST /v1/request/query #
POST /v1/request/query-clickhouse #
GET /v1/request/{requestId} #
GET /v1/request/{requestId}/inputs #
POST /v1/request/query-ids #
POST /v1/request/{requestId}/feedback #
PUT /v1/request/{requestId}/property #
POST /v1/request/{requestId}/assets/{assetId} #
POST /v1/request/{requestId}/score #

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-request-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-request-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: helicone-api Agent Request API
  version: 1.0.0
  license:
    name: MIT
  contact: {}
servers:
- url: https://api.helicone.ai/
- url: http://localhost:8585/
tags:
- name: Request
paths:
  /v1/request/count/query:
    post:
      operationId: GetRequestCount
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Result_number.string_'
      tags:
      - Request
      security:
      - api_key: []
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RequestQueryParams'
  /v1/request/query:
    post:
      operationId: GetRequests
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Result_HeliconeRequest-Array.string_'
              examples:
                Example 1:
                  value:
                    filter: {}
                    isCached: false
                    limit: 10
                    offset: 0
                    sort:
                      created_at: desc
                    isScored: false
                    isPartOfExperiment: false
      tags:
      - Request
      security:
      - api_key: []
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RequestQueryParams'
  /v1/request/query-clickhouse:
    post:
      operationId: GetRequestsClickhouse
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Result_HeliconeRequest-Array.string_'
              examples:
                Example 1:
                  value:
                    filter: {}
                    isCached: false
                    limit: 10
                    offset: 0
                    sort:
                      created_at: desc
                    isScored: false
                    isPartOfExperiment: false
      tags:
      - Request
      security:
      - api_key: []
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RequestQueryParams'
  /v1/request/{requestId}:
    get:
      operationId: GetRequestById
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Result_HeliconeRequest.string_'
      tags:
      - Request
      security:
      - api_key: []
      parameters:
      - in: path
        name: requestId
        required: true
        schema:
          type: string
      - in: query
        name: includeBody
        required: false
        schema:
          default: false
          type: boolean
  /v1/request/{requestId}/inputs:
    get:
      operationId: GetRequestInputs
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Result__inputs-Record_string.any_--prompt_id-string--version_id-string--environment-string-or-null_-or-null.string_'
      tags:
      - Request
      security:
      - api_key: []
      parameters:
      - in: path
        name: requestId
        required: true
        schema:
          type: string
  /v1/request/query-ids:
    post:
      operationId: GetRequestsByIds
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Result_HeliconeRequest-Array.string_'
      tags:
      - Request
      security:
      - api_key: []
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              properties:
                requestIds:
                  items:
                    type: string
                  type: array
              required:
              - requestIds
              type: object
  /v1/request/{requestId}/feedback:
    post:
      operationId: FeedbackRequest
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Result_null.string_'
      tags:
      - Request
      security:
      - api_key: []
      parameters:
      - in: path
        name: requestId
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              properties:
                rating:
                  type: boolean
              required:
              - rating
              type: object
  /v1/request/{requestId}/property:
    put:
      operationId: PutProperty
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Result_null.string_'
      tags:
      - Request
      security:
      - api_key: []
      parameters:
      - in: path
        name: requestId
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              properties:
                value:
                  type: string
                key:
                  type: string
              required:
              - value
              - key
              type: object
  /v1/request/{requestId}/assets/{assetId}:
    post:
      operationId: GetRequestAssetById
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Result_HeliconeRequestAsset.string_'
      tags:
      - Request
      security:
      - api_key: []
      parameters:
      - in: path
        name: requestId
        required: true
        schema:
          type: string
      - in: path
        name: assetId
        required: true
        schema:
          type: string
  /v1/request/{requestId}/score:
    post:
      operationId: AddScores
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Result_null.string_'
      tags:
      - Request
      security:
      - api_key: []
      parameters:
      - in: path
        name: requestId
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ScoreRequest'
components:
  schemas:
    FunctionCall:
      properties:
        id:
          type: string
        name:
          type: string
        arguments:
          $ref: '#/components/schemas/Record_string.any_'
      required:
      - name
      - arguments
      type: object
      additionalProperties: false
    Message:
      properties:
        ending_event_id:
          type: string
        trigger_event_id:
          type: string
        start_timestamp:
          type: string
        annotations:
          items:
            properties:
              content:
                type: string
              title:
                type: string
              url:
                type: string
              type:
                type: string
                enum:
                - url_citation
            required:
            - title
            - url
            - type
            type: object
          type: array
        reasoning:
          type: string
        deleted:
          type: boolean
        contentArray:
          items:
            $ref: '#/components/schemas/Message'
          type: array
        idx:
          type: number
          format: double
        detail:
          type: string
        filename:
          type: string
        file_id:
          type: string
        file_data:
          type: string
        type:
          type: string
          enum:
          - input_image
          - input_text
          - input_file
        audio_data:
          type: string
        image_url:
          type: string
        timestamp:
          type: string
        tool_call_id:
          type: string
        tool_calls:
          items:
            $ref: '#/components/schemas/FunctionCall'
          type: array
        mime_type:
          type: string
        content:
          type: string
        name:
          type: string
        instruction:
          type: string
        role:
          anyOf:
          - type: string
          - type: string
            enum:
            - user
            - assistant
            - system
            - developer
        id:
          type: string
        _type:
          type: string
          enum:
          - functionCall
          - function
          - image
          - file
          - message
          - autoInput
          - contentArray
          - audio
      required:
      - _type
      type: object
    Result__inputs-Record_string.any_--prompt_id-string--version_id-string--environment-string-or-null_-or-null.string_:
      anyOf:
      - $ref: '#/components/schemas/ResultSuccess__inputs-Record_string.any_--prompt_id-string--version_id-string--environment-string-or-null_-or-null_'
      - $ref: '#/components/schemas/ResultError_string_'
    Provider:
      anyOf:
      - $ref: '#/components/schemas/ProviderName'
      - $ref: '#/components/schemas/ModelProviderName'
      - type: string
        enum:
        - CUSTOM
    Record_string.string_:
      properties: {}
      additionalProperties:
        type: string
      type: object
      description: Construct a type with a set of properties K of type T
    LLMRequestBody:
      properties:
        llm_type:
          $ref: '#/components/schemas/LlmType'
        provider:
          type: string
        model:
          type: string
        messages:
          items:
            $ref: '#/components/schemas/Message'
          type:
          - array
          - 'null'
        prompt:
          type:
          - string
          - 'null'
        instructions:
          type:
          - string
          - 'null'
        max_tokens:
          type:
          - number
          - 'null'
          format: double
        temperature:
          type:
          - number
          - 'null'
          format: double
        top_p:
          type:
          - number
          - 'null'
          format: double
        seed:
          type:
          - number
          - 'null'
          format: double
        stream:
          type:
          - boolean
          - 'null'
        presence_penalty:
          type:
          - number
          - 'null'
          format: double
        frequency_penalty:
          type:
          - number
          - 'null'
          format: double
        stop:
          anyOf:
          - items:
              type: string
            type: array
          - type: string
        reasoning_effort:
          type:
          - string
          - 'null'
          enum:
          - minimal
          - low
          - medium
          - high
          - null
        verbosity:
          type:
          - string
          - 'null'
          enum:
          - low
          - medium
          - high
          - null
        tools:
          items:
            $ref: '#/components/schemas/Tool'
          type: array
        parallel_tool_calls:
          type:
          - boolean
          - 'null'
        tool_choice:
          properties:
            name:
              type: string
            type:
              type: string
              enum:
              - none
              - auto
              - any
              - tool
          required:
          - type
          type: object
        response_format:
          properties:
            json_schema: {}
            type:
              type: string
          required:
          - type
          type: object
        toolDetails:
          $ref: '#/components/schemas/HeliconeEventTool'
        vectorDBDetails:
          $ref: '#/components/schemas/HeliconeEventVectorDB'
        dataDetails:
          $ref: '#/components/schemas/HeliconeEventData'
        input:
          anyOf:
          - type: string
          - items:
              type: string
            type: array
        n:
          type:
          - number
          - 'null'
          format: double
        size:
          type: string
        quality:
          type: string
      type: object
      additionalProperties: false
    ProviderName:
      type: string
      enum:
      - OPENAI
      - ANTHROPIC
      - AZURE
      - LOCAL
      - HELICONE
      - AMDBARTEK
      - ANYSCALE
      - CLOUDFLARE
      - 2YFV
      - TOGETHER
      - LEMONFOX
      - FIREWORKS
      - PERPLEXITY
      - GOOGLE
      - OPENROUTER
      - WISDOMINANUTSHELL
      - GROQ
      - COHERE
      - MISTRAL
      - DEEPINFRA
      - QSTASH
      - FIRECRAWL
      - AWS
      - BEDROCK
      - DEEPSEEK
      - X
      - AVIAN
      - NEBIUS
      - NOVITA
      - OPENPIPE
      - CHUTES
      - LLAMA
      - NVIDIA
      - VERCEL
      - CEREBRAS
      - BASETEN
      - CANOPYWAVE
    SortDirection:
      type: string
      enum:
      - asc
      - desc
    Partial_TimestampOperators_:
      properties:
        equals:
          type: string
        gte:
          type: string
        lte:
          type: string
        lt:
          type: string
        gt:
          type: string
      type: object
      description: Make all properties in T optional
    Result_HeliconeRequest.string_:
      anyOf:
      - $ref: '#/components/schemas/ResultSuccess_HeliconeRequest_'
      - $ref: '#/components/schemas/ResultError_string_'
    Response:
      properties:
        contentArray:
          items:
            $ref: '#/components/schemas/Response'
          type: array
        detail:
          type: string
        filename:
          type: string
        file_id:
          type: string
        file_data:
          type: string
        idx:
          type: number
          format: double
        audio_data:
          type: string
        image_url:
          type: string
        timestamp:
          type: string
        tool_call_id:
          type: string
        tool_calls:
          items:
            $ref: '#/components/schemas/FunctionCall'
          type: array
        text:
          type: string
        type:
          type: string
          enum:
          - input_image
          - input_text
          - input_file
        name:
          type: string
        role:
          type: string
          enum:
          - user
          - assistant
          - system
          - developer
        id:
          type: string
        _type:
          type: string
          enum:
          - functionCall
          - function
          - image
          - text
          - file
          - contentArray
      required:
      - type
      - role
      - _type
      type: object
    Tool:
      properties:
        name:
          type: string
        description:
          type: string
        parameters:
          $ref: '#/components/schemas/Record_string.any_'
        strict:
          type: boolean
      required:
      - name
      type: object
      additionalProperties: false
    ? FilterLeafSubset_feedback-or-request-or-response-or-properties-or-values-or-request_response_rmt-or-sessions_request_response_rmt_
    : $ref: '#/components/schemas/Pick_FilterLeaf.feedback-or-request-or-response-or-properties-or-values-or-request_response_rmt-or-sessions_request_response_rmt_'
    Record_string.number-or-boolean-or-undefined_:
      properties: {}
      additionalProperties:
        anyOf:
        - type: number
          format: double
        - type: boolean
      type: object
      description: Construct a type with a set of properties K of type T
    RequestQueryParams:
      properties:
        filter:
          $ref: '#/components/schemas/RequestFilterNode'
        offset:
          type: number
          format: double
        limit:
          type: number
          format: double
        sort:
          $ref: '#/components/schemas/SortLeafRequest'
        isCached:
          type: boolean
        includeInputs:
          type: boolean
        isPartOfExperiment:
          type: boolean
        isScored:
          type: boolean
      required:
      - filter
      type: object
      additionalProperties: false
    Result_number.string_:
      anyOf:
      - $ref: '#/components/schemas/ResultSuccess_number_'
      - $ref: '#/components/schemas/ResultError_string_'
    SortLeafRequest:
      properties:
        random:
          type: boolean
          enum:
          - true
        created_at:
          $ref: '#/components/schemas/SortDirection'
        cache_created_at:
          $ref: '#/components/schemas/SortDirection'
        latency:
          $ref: '#/components/schemas/SortDirection'
        last_active:
          $ref: '#/components/schemas/SortDirection'
        total_tokens:
          $ref: '#/components/schemas/SortDirection'
        completion_tokens:
          $ref: '#/components/schemas/SortDirection'
        prompt_tokens:
          $ref: '#/components/schemas/SortDirection'
        user_id:
          $ref: '#/components/schemas/SortDirection'
        body_model:
          $ref: '#/components/schemas/SortDirection'
        is_cached:
          $ref: '#/components/schemas/SortDirection'
        request_prompt:
          $ref: '#/components/schemas/SortDirection'
        response_text:
          $ref: '#/components/schemas/SortDirection'
        properties:
          properties: {}
          additionalProperties:
            $ref: '#/components/schemas/SortDirection'
          type: object
        values:
          properties: {}
          additionalProperties:
            $ref: '#/components/schemas/SortDirection'
          type: object
        cost:
          $ref: '#/components/schemas/SortDirection'
        time_to_first_token:
          $ref: '#/components/schemas/SortDirection'
      type: object
      additionalProperties: false
    LlmSchema:
      properties:
        request:
          $ref: '#/components/schemas/LLMRequestBody'
        response:
          allOf:
          - $ref: '#/components/schemas/LLMResponseBody'
      required:
      - request
      type: object
      additionalProperties: false
    ScoreRequest:
      properties:
        scores:
          $ref: '#/components/schemas/Scores'
      required:
      - scores
      type: object
      additionalProperties: false
    ResultSuccess_null_:
      properties:
        data:
          type:
          - number
          - 'null'
          enum:
          - null
        error:
          type:
          - number
          - 'null'
          enum:
          - null
      required:
      - data
      - error
      type: object
      additionalProperties: false
    Partial_TextOperators_:
      properties:
        not-equals:
          type: string
        equals:
          type: string
        like:
          type: string
        ilike:
          type: string
        contains:
          type: string
        not-contains:
          type: string
      type: object
      description: Make all properties in T optional
    HeliconeRequest:
      properties:
        response_id:
          type:
          - string
          - 'null'
        response_created_at:
          type:
          - string
          - 'null'
        response_body: {}
        response_status:
          type: number
          format: double
        response_model:
          type:
          - string
          - 'null'
        request_id:
          type: string
        request_created_at:
          type: string
        request_body: {}
        request_path:
          type: string
        request_user_id:
          type:
          - string
          - 'null'
        request_properties:
          allOf:
          - $ref: '#/components/schemas/Record_string.string_'
        request_model:
          type:
          - string
          - 'null'
        model_override:
          type:
          - string
          - 'null'
        helicone_user:
          type:
          - string
          - 'null'
        provider:
          $ref: '#/components/schemas/Provider'
        delay_ms:
          type:
          - number
          - 'null'
          format: double
        time_to_first_token:
          type:
          - number
          - 'null'
          format: double
        total_tokens:
          type:
          - number
          - 'null'
          format: double
        prompt_tokens:
          type:
          - number
          - 'null'
          format: double
        prompt_cache_write_tokens:
          type:
          - number
          - 'null'
          format: double
        prompt_cache_read_tokens:
          type:
          - number
          - 'null'
          format: double
        completion_tokens:
          type:
          - number
          - 'null'
          format: double
        reasoning_tokens:
          type:
          - number
          - 'null'
          format: double
        prompt_audio_tokens:
          type:
          - number
          - 'null'
          format: double
        completion_audio_tokens:
          type:
          - number
          - 'null'
          format: double
        cost:
          type:
          - number
          - 'null'
          format: double
        prompt_id:
          type:
          - string
          - 'null'
        prompt_version:
          type:
          - string
          - 'null'
        feedback_created_at:
          type:
          - string
          - 'null'
        feedback_id:
          type:
          - string
          - 'null'
        feedback_rating:
          type:
          - boolean
          - 'null'
        signed_body_url:
          type:
          - string
          - 'null'
        llmSchema:
          allOf:
          - $ref: '#/components/schemas/LlmSchema'
        country_code:
          type:
          - string
          - 'null'
        asset_ids:
          items:
            type: string
          type:
          - array
          - 'null'
        asset_urls:
          allOf:
          - $ref: '#/components/schemas/Record_string.string_'
        scores:
          allOf:
          - $ref: '#/components/schemas/Record_string.number_'
        costUSD:
          type:
          - number
          - 'null'
          format: double
        properties:
          $ref: '#/components/schemas/Record_string.string_'
        assets:
          items:
            type: string
          type: array
        target_url:
          type: string
        model:
          type: string
        cache_reference_id:
          type:
          - string
          - 'null'
        cache_enabled:
          type: boolean
        updated_at:
          type: string
        request_referrer:
          type:
          - string
          - 'null'
        ai_gateway_body_mapping:
          type:
          - string
          - 'null'
        storage_location:
          type: string
      required:
      - response_id
      - response_created_at
      - response_status
      - response_model
      - request_id
      - request_created_at
      - request_body
      - request_path
      - request_user_id
      - request_properties
      - request_model
      - model_override
      - helicone_user
      - provider
      - delay_ms
      - time_to_first_token
      - total_tokens
      - prompt_tokens
      - prompt_cache_write_tokens
      - prompt_cache_read_tokens
      - completion_tokens
      - reasoning_tokens
      - prompt_audio_tokens
      - completion_audio_tokens
      - cost
      - prompt_id
      - prompt_version
      - llmSchema
      - country_code
      - asset_ids
      - asset_urls
      - scores
      - properties
      - assets
      - target_url
      - model
      - cache_reference_id
      - cache_enabled
      - ai_gateway_body_mapping
      type: object
      additionalProperties: false
    Record_string.any_:
      properties: {}
      additionalProperties: {}
      type: object
      description: Construct a type with a set of properties K of type T
    ResultError_string_:
      properties:
        data:
          type:
          - number
          - 'null'
          enum:
          - null
        error:
          type: string
      required:
      - data
      - error
      type: object
      additionalProperties: false
    Result_null.string_:
      anyOf:
      - $ref: '#/components/schemas/ResultSuccess_null_'
      - $ref: '#/components/schemas/ResultError_string_'
    HeliconeEventTool:
      properties:
        _type:
          type: string
          enum:
          - tool
        toolName:
          type: string
        input: {}
      required:
      - _type
      - toolName
      - input
      type: object
      additionalProperties: {}
    HeliconeEventVectorDB:
      properties:
        _type:
          type: string
          enum:
          - vector_db
        operation:
          type: string
          enum:
          - search
          - insert
          - delete
          - update
        text:
          type: string
        vector:
          items:
            type: number
            format: double
          type: array
        topK:
          type: number
          format: double
        filter:
          additionalProperties: false
          type: object
        databaseName:
          type: string
      required:
      - _type
      - operation
      type: object
      additionalProperties: {}
    Partial_ResponseTableToOperators_:
      properties:
        body_tokens:
          $ref: '#/components/schemas/Partial_NumberOperators_'
        body_model:
          $ref: '#/components/schemas/Partial_TextOperators_'
        body_completion:
          $ref: '#/components/schemas/Partial_TextOperators_'
        status:
          $ref: '#/components/schemas/Partial_NumberOperators_'
        model:
          $ref: '#/components/schemas/Partial_TextOperators_'
      type: object
      description: Make all properties in T optional
    Partial_BooleanOperators_:
      properties:
        equals:
          type: boolean
      type: object
      description: Make all properties in T optional
    ResultSuccess__inputs-Record_string.any_--prompt_id-string--version_id-string--environment-string-or-null_-or-null_:
      properties:
        data:
          properties:
            environment:
              type:
              - string
              - 'null'
            version_id:
              type: string
            prompt_id:
              type: string
            inputs:
              $ref: '#/components/schemas/Record_string.any_'
          required:
          - environment
          - version_id
          - prompt_id
          - inputs
          type:
          - object
          - 'null'
        error:
          type:
          - number
          - 'null'
          enum:
          - null
      required:
      - data
      - error
      type: object
      additionalProperties: false
    ResultSuccess_HeliconeRequestAsset_:
      properties:
        data:
          $ref: '#/components/schemas/HeliconeRequestAsset'
        error:
          type:
          - number
          - 'null'
          enum:
          - null
      required:
      - data
      - error
      type: object
      additionalProperties: false
    Result_HeliconeRequest-Array.string_:
      anyOf:
      - $ref: '#/components/schemas/ResultSuccess_HeliconeRequest-Array_'
      - $ref: '#/components/schemas/ResultError_string_'
    HeliconeRequestAsset:
      properties:
        assetUrl:
          type: string
      required:
      - assetUrl
      type: object
      additionalProperties: false
    LLMResponseBody:
      properties:
        dataDetailsResponse:
          properties:
            name:
              type: string
            _type:
              type: string
              enum:
              - data
            metadata:
              properties:
                timestamp:
                  type: string
              additionalProperties: {}
              required:
              - timestamp
              type: object
            message:
              type: string
            status:
              type: string
          additionalProperties: {}
          required:
          - name
          - _type
          - metadata
          - message
          - status
          type: object
        vectorDBDetailsResponse:
          properties:
            _type:
              type: string
              enum:
              - vector_db
            metadata:
              properties:
                timestamp:
                  type: string
                destination_parsed:
                  type: boolean
                destination:
                  type: string
              required:
              - timestamp
              type: object
            actualSimilarity:
              type: number
              format: double
            similarityThreshold:
              type: number
              format: double
            message:
              type: string
            status:
              type: string
          required:
          - _type
          - metadata
          - message
          - status
          type: object
        toolDetailsResponse:
          properties:
            toolName:
              type: string
            _type:
              type: string
              enum:
              - tool
            metadata:
              properties:
                timestamp:
                  type: string
              required:
              - timestamp
              type: object
            tips:
              items:
                type: string
              type: array
            message:
              type: string
            status:
              type: string
          required:
          - toolName
          - _type
          - metadata
          - tips
          - message
          - status
          type: object
        error:
          properties:
            heliconeMessage: {}
          required:
          - heliconeMessage
          type: object
        model:
          type:
          - string
          - 'null'
        instructions:
          type:
          - string
          - 'null'
        responses:
          items:
            $ref: '#/components/schemas/Response'
          type:
          - array
          - 'null'
        messages:
          items:
            $ref: '#/components/schemas/Message'
          type:
          - array
          - 'null'
      type: object
    LlmType:
      type: string
      enum:
      - chat
      - completion
    ModelProviderName:
      type: string
      enum:
      - baseten
      - anthropic
      - azure
      - bedrock
      - canopywave
      - cerebras
      - chutes
      - deepinfra
      - deepseek
      - fireworks
      - google-ai-studio
      - groq
      - helicone
      - mistral
      - nebius
      - novita
      - openai
      - openrouter
      - perplexity
      - vertex
      - xai
    Partial_NumberOperators_:
      properties:
        not-equals:
          type: number
          format: double
        equals:
          type: number
          format: double
        gte:
          type: number
          format: double
        lte:
          type: number
          format: double
        lt:
          type: number
          format: double
        gt:
          type: number
          format: double
      type: object
      description: Make all properties in T optional
    Result_HeliconeRequestAsset.string_:
      anyOf:
      - $ref: '#/components/schemas/ResultSuccess_HeliconeRequestAsset_'
      - $ref: '#/components/schemas/ResultError_string_'
    ResultSuccess_HeliconeRequest_:
      properties:
        data:
          $ref: '#/components/schemas/HeliconeRequest'
        error:
          type:
          - number
          - 'null'
          enum:
          - null
      required:
      - data
      - error
      type: object
      additionalProperties: false
    Record_string.number_:
      properties: {}
      additionalPr

# --- truncated at 32 KB (41 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/helicone/refs/heads/main/openapi/helicone-request-api-openapi.yml