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

# Create CRM List

> Creates a CRM list in the API key owner's team. Use `name` for the list name.



## OpenAPI

````yaml POST /api/v2/crm/lists
openapi: 3.1.0
info:
  title: CRM API
  description: >-
    Create CRM lists, add creators, check creator membership, and update CRM
    contacts. CRM API calls are free but require an active TopYappers
    subscription.
  version: 2.0.0
servers:
  - url: https://api.topyappers.com
security:
  - apiKeyAuth: []
paths:
  /api/v2/crm/lists:
    post:
      tags:
        - CRM Lists
      summary: Create CRM list
      description: >-
        Creates a CRM list in the API key owner's team. Use `name` for the list
        name.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateCrmListRequest'
            example:
              name: June outreach
              websiteId: website-1
              description: Creators for June campaign
              budget: 5000
      responses:
        '200':
          description: CRM list created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CrmListResponse'
        '400':
          $ref: '#/components/responses/BadRequest'
        '403':
          $ref: '#/components/responses/AuthError'
        '429':
          $ref: '#/components/responses/RateLimitError'
components:
  schemas:
    CreateCrmListRequest:
      type: object
      additionalProperties: false
      properties:
        name:
          type: string
          minLength: 1
          maxLength: 120
          description: CRM list name.
        websiteId:
          type: string
          nullable: true
        description:
          type: string
          nullable: true
        budget:
          type: number
          nullable: true
          minimum: 0
        startDate:
          type: string
          format: date-time
          nullable: true
        endDate:
          type: string
          format: date-time
          nullable: true
      required:
        - name
    CrmListResponse:
      type: object
      properties:
        message:
          type: string
          example: OK
        response:
          $ref: '#/components/schemas/CrmList'
    CrmList:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        website_id:
          type: string
          nullable: true
        description:
          type: string
          nullable: true
        budget:
          type: number
          nullable: true
        start_date:
          type: string
          nullable: true
        end_date:
          type: string
          nullable: true
        team_id:
          type: string
        active:
          type: boolean
        contact_count:
          type: integer
          nullable: true
        to_outreach_count:
          type: integer
          nullable: true
        date_created:
          type: string
          nullable: true
        date_updated:
          type: string
          nullable: true
    ErrorResponse:
      type: object
      properties:
        detail:
          type: string
  responses:
    BadRequest:
      description: Invalid request.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    AuthError:
      description: >-
        Missing or invalid API key, inactive subscription, or inaccessible team
        scope.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    RateLimitError:
      description: Too many requests. The response includes a `Retry-After` header.
      headers:
        Retry-After:
          description: Seconds to wait before retrying.
          schema:
            type: integer
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-ty-api-key

````