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

# List Lead Lists

> List Lead Lists



## OpenAPI

````yaml get /lead-lists
openapi: 3.0.1
info:
  title: Amplemarket API V1 Docs
  version: v1
servers:
  - url: https://api.amplemarket.com
security:
  - bearerAuth: []
paths:
  /lead-lists:
    get:
      tags:
        - Lead List
      summary: List Lead Lists
      description: List Lead Lists
      parameters:
        - name: page[size]
          in: query
          required: false
          description: Page size
          schema:
            type: string
        - name: page[after]
          in: query
          required: false
          description: Page after
          schema:
            type: string
        - name: page[before]
          in: query
          required: false
          description: Page before
          schema:
            type: string
        - name: status
          in: query
          required: false
          description: Filter by lead list status
          schema:
            type: string
        - name: owner_id
          in: query
          required: false
          description: Filter by lead list owner id
          schema:
            type: string
        - name: owner_email
          in: query
          required: false
          description: Filter by lead list owner email
          schema:
            type: string
      responses:
        '200':
          description: Successful
          content:
            application/json:
              examples:
                Successful:
                  value:
                    lead_lists:
                      - id: 019e8e97-3143-7ae3-ae44-c8c36cc3d51f
                        name: Sample list 1
                        status: completed
                        url: >-
                          https://localhost:3000/dashboard/lead_lists/019e8e97-3143-7ae3-ae44-c8c36cc3d51f
                        shared: false
                        visible: true
                        owner: admin@example.com
                        type: linkedin
                        created_at: '2026-06-03T17:45:33Z'
                        updated_at: '2026-06-03T17:45:33Z'
                    _links:
                      self:
                        href: /lead-lists?page[size]=20
              schema:
                type: object
                properties:
                  lead_lists:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        name:
                          type: string
                        status:
                          type: string
                        url:
                          type: string
                        shared:
                          type: boolean
                        visible:
                          type: boolean
                        owner:
                          type: string
                        created_at:
                          type: string
                          format: date_time
                        updated_at:
                          type: string
                          format: date_time
                        type:
                          type: string
                  _links:
                    $ref: '#/components/schemas/response_links_object'
        '400':
          description: Bad request
          content:
            application/json:
              examples:
                Unsupported status value:
                  value:
                    _errors:
                      - code: unsupported_value
                        title: Unsupported Value
                        detail: '''invalid'' is not a supported status.'
                        source:
                          pointer: /status
                    object: error
              schema:
                $ref: '#/components/schemas/response_errors_object'
components:
  schemas:
    response_links_object:
      type: object
      required:
        - self
      additionalProperties: false
      properties:
        self:
          $ref: '#/components/schemas/response_link_object'
        prev:
          $ref: '#/components/schemas/response_link_object'
        next:
          $ref: '#/components/schemas/response_link_object'
    response_errors_object:
      type: object
      required:
        - object
        - _errors
      additionalProperties: false
      properties:
        object:
          type: string
          enum:
            - error
        _errors:
          type: array
          items:
            $ref: '#/components/schemas/response_error_object'
        _links:
          $ref: '#/components/schemas/response_links_object'
    response_link_object:
      type: object
      required:
        - href
      additionalProperties: false
      properties:
        href:
          type: string
    response_error_object:
      type: object
      required:
        - code
        - title
        - detail
      additionalProperties: false
      properties:
        code:
          type: string
        title:
          type: string
        detail:
          type: string
        source:
          type: object
          additionalProperties: false
          properties:
            pointer:
              type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````