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

# Get Project

> Returns the project associated with the API key.



## OpenAPI

````yaml GET /project
openapi: 3.0.3
info:
  title: Echo API
  description: |
    Echo is a voice notification platform. Use your API key (returned on signup)
    in the `x-api-key` header for all `/v1/*` endpoints.

    The API key implicitly scopes every request to your project and business —
    no need to pass IDs in the URL.
  version: 1.0.0
servers:
  - url: https://api.meetecho.ai/v1
    description: Production
security: []
tags:
  - name: Auth
    description: Signup, login, token refresh
  - name: Customers
    description: Manage customers within your project
  - name: Agents
    description: Manage reusable voice agents
  - name: Notifications
    description: Trigger and inspect outbound calls
  - name: API Keys
    description: Create and revoke API keys for your project
  - name: Project
    description: Inspect and configure your project settings
  - name: Webhook Endpoints
    description: >-
      Create and manage webhook endpoints — each with its own URL, event
      subscriptions, and signing secret
  - name: Delivery Logs
    description: >-
      Inspect delivery history, per-attempt details, and manually retry failed
      deliveries
paths:
  /project:
    get:
      tags:
        - Project
      summary: Get current project
      description: Returns the project associated with the API key.
      responses:
        '200':
          description: Project object
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Project'
              example:
                id: e56b4c35-882d-4604-9944-9763d314ea59
                business_id: 97bfa642-d2cb-46d5-8de8-6d3553c83007
                name: default
                status: active
                created_at: '2026-03-18T16:44:15.000Z'
                updated_at: '2026-03-18T16:44:15.000Z'
      security:
        - ApiKey: []
components:
  schemas:
    Project:
      type: object
      properties:
        id:
          type: string
          format: uuid
          example: e56b4c35-882d-4604-9944-9763d314ea59
        business_id:
          type: string
          format: uuid
          example: 97bfa642-d2cb-46d5-8de8-6d3553c83007
        name:
          type: string
          example: default
        status:
          type: string
          enum:
            - active
            - disabled
          example: active
        created_at:
          type: string
          format: date-time
          example: '2026-03-18T16:44:15.000Z'
        updated_at:
          type: string
          format: date-time
          example: '2026-03-18T16:44:15.000Z'
  securitySchemes:
    ApiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: 'Echo API key — format: `echo_<64 hex chars>`. Returned once on signup.'

````