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

# List Pitches

> Returns all non-deleted pitch workspace reports for the calling organization, ordered by creation date (newest first). Pitches are org-level resources and are not scoped to a single website.

Requires a **global (organization-scoped) API key**. Website-scoped keys are rejected with `403 Forbidden`.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/pitches
openapi: 3.1.0
info:
  title: AthenaHQ API
  description: >-
    AthenaHQ API provides programmatic access to manage your websites and
    prompts for AI-powered content optimization.
  version: 1.0.0
  contact:
    email: support@athenahq.ai
servers:
  - url: https://api.athenahq.ai
    description: Production server
security:
  - apiKey: []
tags:
  - name: Basics
    description: Core API operations for managing websites and prompts
  - name: Metrics
    description: Metrics and analytics endpoints for tracking AI visibility
  - name: Billing
    description: Billing and credits endpoints for managing usage
  - name: Team Management
    description: Endpoints for managing team members and invitations
  - name: Groups
    description: Endpoints for managing groups of websites
  - name: Content
    description: >-
      Endpoints for accessing Content Hub data — tabs, tracked URLs, and per-URL
      prompt breakdowns.
  - name: Pitch Workspace
    description: >-
      Endpoints for accessing pitch workspace reports — org-scoped pitch runs
      with competitors, prompts, attributes, and aggregate metrics.
  - name: Knowledge Base
    description: >-
      Endpoints for reading the brand Knowledge Base — approved brand facts and
      the pillars that organize them.
paths:
  /api/v1/pitches:
    get:
      tags:
        - Pitch Workspace
      summary: List Pitches
      description: >-
        Returns all non-deleted pitch workspace reports for the calling
        organization, ordered by creation date (newest first). Pitches are
        org-level resources and are not scoped to a single website.


        Requires a **global (organization-scoped) API key**. Website-scoped keys
        are rejected with `403 Forbidden`.
      operationId: listPitches
      responses:
        '200':
          description: Successful response with the list of pitches.
          content:
            application/json:
              schema:
                type: object
                properties:
                  pitches:
                    type: array
                    items:
                      $ref: '#/components/schemas/PitchSummary'
                required:
                  - pitches
        '401':
          description: Unauthorized — invalid or missing API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: >-
            Forbidden — a website-scoped API key was used. Pitches are org-level
            resources; use a global API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                error: 'Forbidden: global API key required'
        '500':
          description: Internal server error.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - apiKey: []
components:
  schemas:
    PitchSummary:
      type: object
      description: >-
        A pitch workspace report — org-scoped, returned in lists without the
        heavy report payload.
      required:
        - id
        - company_name
        - company_url
        - company_description
        - status
        - created_at
      properties:
        id:
          type: string
          format: uuid
          description: Unique identifier for the pitch.
          example: 123e4567-e89b-12d3-a456-426614174000
        company_name:
          type: string
          description: Display name of the company the pitch was created for.
          example: Acme Inc
        company_url:
          type: string
          description: The company website domain (without protocol).
          example: acme.com
        company_description:
          type: string
          description: Short description of the company captured at pitch creation time.
          example: Acme Inc sells durable industrial widgets to manufacturers.
        status:
          type: string
          enum:
            - draft
            - processing
            - completed
            - failed
          description: >-
            Current state of the pitch run. `processing` means the workflow is
            still generating prompts and responses; `completed` means the report
            is ready; `failed` means the run errored.
          example: completed
        created_at:
          type: string
          format: date-time
          description: ISO 8601 timestamp (UTC) for when the pitch was created.
          example: '2026-05-22T15:04:05.000Z'
        country:
          type: string
          nullable: true
          description: Target country for the pitch, or `null` if no country was set.
          example: United States
        language:
          type: string
          nullable: true
          description: Target language for the pitch, or `null` if no language was set.
          example: en
        type:
          type: string
          enum:
            - pitch_workspace
            - landing_page
          nullable: true
          description: >-
            Pitch variant. `pitch_workspace` is the standard pitch report;
            `landing_page` is generated from a landing page URL. `null` for
            legacy pitches predating the field.
          example: pitch_workspace
    Error:
      type: object
      description: Error response object
      required:
        - error
      properties:
        error:
          type: string
          description: Error message describing what went wrong
          example: Unauthorized
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        API key for authentication. You can create one
        [here](https://app.athenahq.ai/organization?tab=api).

````