> ## Documentation Index
> Fetch the complete documentation index at: https://docs.helicone.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Query Helicone Datasets

> Search and filter through all Helicone datasets

<Warning>
  <strong>For users in the European Union:</strong> Please use `eu.api.helicone.ai` instead of
  `api.helicone.ai`.
</Warning>


## OpenAPI

````yaml post /v1/helicone-dataset/query
openapi: 3.0.0
info:
  title: helicone-api
  version: 1.0.0
  license:
    name: MIT
  contact: {}
servers:
  - url: https://api.helicone.ai/
  - url: http://localhost:8585/
security: []
paths:
  /v1/helicone-dataset/query:
    post:
      tags:
        - Dataset
      operationId: QueryHeliconeDataset
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              properties:
                datasetIds:
                  items:
                    type: string
                  type: array
              type: object
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Result_HeliconeDataset-Array.string_'
      security:
        - api_key: []
components:
  schemas:
    Result_HeliconeDataset-Array.string_:
      anyOf:
        - $ref: '#/components/schemas/ResultSuccess_HeliconeDataset-Array_'
        - $ref: '#/components/schemas/ResultError_string_'
    ResultSuccess_HeliconeDataset-Array_:
      properties:
        data:
          items:
            $ref: '#/components/schemas/HeliconeDataset'
          type: array
        error:
          type: number
          enum:
            - null
          nullable: true
      required:
        - data
        - error
      type: object
      additionalProperties: false
    ResultError_string_:
      properties:
        data:
          type: number
          enum:
            - null
          nullable: true
        error:
          type: string
      required:
        - data
        - error
      type: object
      additionalProperties: false
    HeliconeDataset:
      properties:
        created_at:
          type: string
          nullable: true
        dataset_type:
          type: string
        id:
          type: string
        meta:
          allOf:
            - $ref: '#/components/schemas/Json'
          nullable: true
        name:
          type: string
          nullable: true
        organization:
          type: string
        requests_count:
          type: number
          format: double
      required:
        - created_at
        - dataset_type
        - id
        - meta
        - name
        - organization
        - requests_count
      type: object
      additionalProperties: false
    Json:
      anyOf:
        - type: string
        - type: number
          format: double
        - type: boolean
        - properties: {}
          additionalProperties:
            $ref: '#/components/schemas/Json'
          type: object
        - items:
            $ref: '#/components/schemas/Json'
          type: array
      nullable: true
  securitySchemes:
    api_key:
      type: apiKey
      name: Authorization
      in: header
      description: 'Bearer token authentication. Format: ''Bearer YOUR_API_KEY'''

````