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

# Get Project

> Get detailed information about a project.



## OpenAPI

````yaml GET /projects/{slug}
openapi: 3.1.0
info:
  title: Faces API
  version: '1.0'
  description: >-
    Faces API for creating and managing presentations. Generate presentations
    from prompts, or read and write individual slides. Each slide is a React
    component (face.tsx) with content blocks (face.content.json) and editor
    controls (face.controls.json).
servers:
  - url: https://faces.app/api/v1
    description: API v1
security:
  - bearerAuth: []
paths:
  /projects/{slug}:
    get:
      tags:
        - Projects
      summary: Get project details
      description: Fetch a project's metadata, latest version, and published URL.
      operationId: getProject
      parameters:
        - schema:
            type: string
          required: true
          name: slug
          in: path
      responses:
        '200':
          description: Project details
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                  slug:
                    type: string
                  name:
                    type: string
                  publishedAt:
                    type:
                      - string
                      - 'null'
                    format: date-time
                  updatedAt:
                    type: string
                    format: date-time
                  editorUrl:
                    type: string
                    format: uri
                  createdAt:
                    type: string
                    format: date-time
                  publishedUrl:
                    type:
                      - string
                      - 'null'
                    format: uri
                  latestVersion:
                    type:
                      - object
                      - 'null'
                    properties:
                      id:
                        type: string
                      name:
                        type: string
                      createdAt:
                        type: string
                        format: date-time
                    required:
                      - id
                      - name
                      - createdAt
                required:
                  - id
                  - slug
                  - name
                  - publishedAt
                  - updatedAt
                  - editorUrl
                  - createdAt
                  - publishedUrl
                  - latestVersion
        '404':
          description: Project not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - bearerAuth: []
components:
  schemas:
    Error:
      type: object
      properties:
        error:
          type: string
        hint:
          type: string
      required:
        - error
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key with "faces_" prefix. Create one at Settings > Developers.

````