> ## 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 New Experiment Table

> Create a new table for storing experiment data

<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/experiment/table/new
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/experiment/table/new:
    post:
      tags:
        - Experiment
      operationId: CreateNewExperimentTable
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateExperimentTableParams'
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/Result__tableId-string--experimentId-string_.string_
      security:
        - api_key: []
components:
  schemas:
    CreateExperimentTableParams:
      properties:
        datasetId:
          type: string
        experimentMetadata:
          $ref: '#/components/schemas/Record_string.any_'
        promptVersionId:
          type: string
        newHeliconeTemplate:
          type: string
        isMajorVersion:
          type: boolean
        promptSubversionMetadata:
          $ref: '#/components/schemas/Record_string.any_'
        experimentTableMetadata:
          $ref: '#/components/schemas/Record_string.any_'
      required:
        - datasetId
        - experimentMetadata
        - promptVersionId
        - newHeliconeTemplate
        - isMajorVersion
        - promptSubversionMetadata
      type: object
      additionalProperties: false
    Result__tableId-string--experimentId-string_.string_:
      anyOf:
        - $ref: >-
            #/components/schemas/ResultSuccess__tableId-string--experimentId-string__
        - $ref: '#/components/schemas/ResultError_string_'
    Record_string.any_:
      properties: {}
      additionalProperties: {}
      type: object
      description: Construct a type with a set of properties K of type T
    ResultSuccess__tableId-string--experimentId-string__:
      properties:
        data:
          properties:
            experimentId:
              type: string
            tableId:
              type: string
          required:
            - experimentId
            - tableId
          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'''

````