> ## 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.

# Create Helicone Dataset

> Create a new Helicone dataset

<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
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:
    post:
      tags:
        - Dataset
      operationId: AddHeliconeDataset
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/NewHeliconeDatasetParams'
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Result__datasetId-string_.string_'
      security:
        - api_key: []
components:
  schemas:
    NewHeliconeDatasetParams:
      properties:
        datasetName:
          type: string
        requestIds:
          items:
            type: string
          type: array
        meta:
          $ref: '#/components/schemas/HeliconeDatasetMetadata'
      required:
        - datasetName
        - requestIds
      type: object
      additionalProperties: false
    Result__datasetId-string_.string_:
      anyOf:
        - $ref: '#/components/schemas/ResultSuccess__datasetId-string__'
        - $ref: '#/components/schemas/ResultError_string_'
    HeliconeDatasetMetadata:
      properties:
        promptVersionId:
          type: string
        inputRecordsIds:
          items:
            type: string
          type: array
      type: object
      additionalProperties: false
    ResultSuccess__datasetId-string__:
      properties:
        data:
          properties:
            datasetId:
              type: string
          required:
            - datasetId
          type: object
        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
  securitySchemes:
    api_key:
      type: apiKey
      name: Authorization
      in: header
      description: 'Bearer token authentication. Format: ''Bearer YOUR_API_KEY'''

````