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

# Get study

> Returns a completed study belonging to the API key organization. The detail response does not include completedOn; that field is returned by the study list.



## OpenAPI

````yaml /api-reference/openapi.yml get /studies/{id}
openapi: 3.1.1
info:
  title: Conveo API
  version: '1.0'
servers:
  - url: https://app.conveo.ai/public-api/v1
security:
  - bearerAuth: []
  - apiKeyAuth: []
paths:
  /studies/{id}:
    description: Get a single study by ID
    get:
      summary: Get study
      description: >-
        Returns a completed study belonging to the API key organization. The
        detail response does not include completedOn; that field is returned by
        the study list.
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: A single study
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SingleStudyResponse'
        '401':
          description: Unauthorized
        '404':
          description: Study not found
components:
  schemas:
    SingleStudyResponse:
      type: object
      properties:
        id:
          type: string
        internalTitle:
          type: string
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Organization API key supplied as a Bearer token. MCP OAuth tokens are
        not accepted by these REST endpoints.
    apiKeyAuth:
      type: apiKey
      in: header
      name: Conveo-Api-Key

````