> ## Documentation Index
> Fetch the complete documentation index at: https://lightdash-mintlify-cccf65ca.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# List explores

> Get all explores for a project



## OpenAPI

````yaml https://raw.githubusercontent.com/lightdash/lightdash/refs/heads/main/packages/backend/src/generated/swagger.json get /api/v1/projects/{projectUuid}/explores
openapi: 3.0.0
info:
  title: Lightdash API
  version: 0.3233.0
  description: >
    Open API documentation for all public Lightdash API endpoints. #
    Authentication Before you get started, you might need to create a Personal
    Access Token to authenticate via the API. You can create a token by
    following this guide: https://docs.lightdash.com/references/personal_tokens
  license:
    name: MIT
  contact:
    name: Lightdash Support
    email: support@lightdash.com
    url: https://docs.lightdash.com/help-and-contact/contact/contact_info/
servers:
  - url: /
security: []
tags:
  - name: My Account
    description: These routes allow users to manage their own user account.
  - name: Organizations
    description: >-
      Each user is a member of a single organization. These routes allow users
      to manage their organization. Most actions are only available to admin
      users.
  - name: Projects
    description: >-
      Projects belong to a single organization. These routes allow users to
      manage their projects, browse content, and execute queries. Users inside
      an organization might have access to a project from an organization-level
      role or they might be granted access to a project directly.
  - name: Spaces
    description: >-
      Spaces allow you to organize charts and dashboards within a project. They
      also allow granular access to content by allowing you to create private
      spaces, which are only accessible to the creator and admins.
  - name: Roles & Permissions
    description: >-
      These routes allow users to manage roles and permissions for their
      organization.
    externalDocs:
      url: https://docs.lightdash.com/references/roles
  - name: Query
    description: >-
      These routes allow users to execute and manage queries against their data
      warehouse. This includes metric queries, SQL queries, and retrieving query
      results.
paths:
  /api/v1/projects/{projectUuid}/explores:
    get:
      tags:
        - Projects
      summary: List explores
      description: Get all explores for a project
      operationId: GetExplores
      parameters:
        - in: path
          name: projectUuid
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                properties:
                  results:
                    $ref: '#/components/schemas/ApiExploresResults'
                  status:
                    type: string
                    enum:
                      - ok
                    nullable: false
                required:
                  - results
                  - status
                type: object
        default:
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorPayload'
      security: []
components:
  schemas:
    ApiExploresResults:
      items:
        $ref: '#/components/schemas/SummaryExplore'
      type: array
    ApiErrorPayload:
      properties:
        error:
          properties:
            data:
              $ref: '#/components/schemas/AnyType'
              description: Optional data containing details of the error
            message:
              type: string
              description: A friendly message summarising the error
            name:
              type: string
              description: Unique name for the type of error
            statusCode:
              type: number
              format: integer
              description: HTTP status code
          required:
            - name
            - statusCode
          type: object
        status:
          type: string
          enum:
            - error
          nullable: false
      required:
        - error
        - status
      type: object
      description: |-
        The Error object is returned from the api any time there is an error.
        The message contains
    SummaryExplore:
      anyOf:
        - allOf:
            - $ref: '#/components/schemas/Pick_Explore.SummaryExploreFields_'
            - $ref: '#/components/schemas/SummaryExtraFields'
        - allOf:
            - $ref: >-
                #/components/schemas/Pick_ExploreError.SummaryExploreErrorFields_
            - $ref: '#/components/schemas/Partial_SummaryExtraFields_'
    AnyType:
      description: |-
        This AnyType is an alias for any
        The goal is to make it easier to identify any type in the codebase
        without having to eslint-disable all the time
        These are only used on legacy `any` types, don't use it for new types.
        This is added on a separate file to avoid circular dependencies.
    Pick_Explore.SummaryExploreFields_:
      properties:
        name:
          type: string
        type:
          $ref: '#/components/schemas/ExploreType'
        label:
          type: string
        tags:
          items:
            type: string
          type: array
        groupLabel:
          type: string
          deprecated: true
        groups:
          items:
            type: string
          type: array
          description: |-
            Nested groups for the sidebar (max 5 levels). Group keys resolve to
            labels/descriptions via the project-level `table_groups` config
            (fetched separately); missing keys fall back to using the key as
            the label.
        aiHint:
          anyOf:
            - type: string
            - items:
                type: string
              type: array
        preAggregateSource:
          $ref: '#/components/schemas/PreAggregateSource'
        warnings:
          items:
            $ref: '#/components/schemas/InlineError'
          type: array
          description: >-
            Non-fatal warnings from partial compilation.

            Present when some joins or fields failed to compile but the explore
            is still usable.

            Only populated when PARTIAL_COMPILATION_ENABLED=true.
      required:
        - name
        - label
        - tags
      type: object
      description: From T, pick a set of properties whose keys are in the union K
    SummaryExtraFields:
      properties:
        databaseName:
          type: string
        schemaName:
          type: string
        description:
          type: string
      required:
        - databaseName
        - schemaName
      type: object
    Pick_ExploreError.SummaryExploreErrorFields_:
      properties:
        name:
          type: string
        type:
          $ref: '#/components/schemas/ExploreType'
        label:
          type: string
        tags:
          items:
            type: string
          type: array
        groupLabel:
          type: string
          deprecated: true
        groups:
          items:
            type: string
          type: array
          description: |-
            Nested groups for the sidebar (max 5 levels). Group keys resolve to
            labels/descriptions via the project-level `table_groups` config
            (fetched separately); missing keys fall back to using the key as
            the label.
        aiHint:
          anyOf:
            - type: string
            - items:
                type: string
              type: array
        errors:
          items:
            $ref: '#/components/schemas/InlineError'
          type: array
      required:
        - name
        - label
        - errors
      type: object
      description: From T, pick a set of properties whose keys are in the union K
    Partial_SummaryExtraFields_:
      properties:
        description:
          type: string
        schemaName:
          type: string
        databaseName:
          type: string
      type: object
      description: Make all properties in T optional
    ExploreType:
      enum:
        - virtual
        - default
        - pre_aggregate
      type: string
    PreAggregateSource:
      properties:
        preAggregateName:
          type: string
        sourceExploreName:
          type: string
      required:
        - preAggregateName
        - sourceExploreName
      type: object
    InlineError:
      properties:
        message:
          type: string
        type:
          $ref: '#/components/schemas/InlineErrorType'
      required:
        - message
        - type
      type: object
    InlineErrorType:
      enum:
        - METADATA_PARSE_ERROR
        - NO_DIMENSIONS_FOUND
        - SKIPPED_JOIN
        - MISSING_TABLE
        - FIELD_ERROR
        - SET_VALIDATION_ERROR
        - INVALID_PARAMETER
        - DUPLICATE_FIELD_NAME
      type: string

````