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

# Get lists

> Retrieve a paginated list of existing contact or company lists. Use this to find an existing list or destination list ID; do not use it as the answer when the user asks you to build a new prospecting list.

Responses include direct Enginy app URLs when available. Each returned list includes an `appUrl` field. MCP agents should return those URLs to users whenever they are present in the response.

    > **Required scope:** `LISTS_READ`
    >
    > **Rate limit:** 100 requests per minute



## OpenAPI

````yaml https://openapi.enginy.ai/definitions.json get /v1/lists
openapi: 3.1.0
info:
  title: Enginy API
  version: 1.0.0
  description: Public API for Enginy platform
servers:
  - url: https://openapi.enginy.ai
    description: Configured server
security: []
tags:
  - name: AI Variables
    description: >-
      Manage AI variables and discover the entity fields you can reference in
      prompts and entity requests.
  - name: Inbox
    description: >-
      Inbox endpoints for listing contact threads, reading thread messages,
      managing tags, and sending manual replies.
  - name: Workflows
    description: >-
      Build, validate, publish, run, and inspect advanced (graph) workflows,
      plus the block/condition catalog needed to author a workflow plan.
paths:
  /v1/lists:
    get:
      tags:
        - Lists
      summary: Get lists
      description: >-
        Retrieve a paginated list of existing contact or company lists. Use this
        to find an existing list or destination list ID; do not use it as the
        answer when the user asks you to build a new prospecting list.


        Responses include direct Enginy app URLs when available. Each returned
        list includes an `appUrl` field. MCP agents should return those URLs to
        users whenever they are present in the response.

            > **Required scope:** `LISTS_READ`
            >
            > **Rate limit:** 100 requests per minute
      parameters:
        - schema:
            type: string
            default: '1'
            description: Page number for pagination. Minimum value is 1. Defaults to 1.
          required: false
          description: Page number for pagination. Minimum value is 1. Defaults to 1.
          name: page
          in: query
        - schema:
            type: string
            default: '25'
            description: >-
              Number of items per page. Minimum is 1, maximum is 100. Defaults
              to 25.
          required: false
          description: >-
            Number of items per page. Minimum is 1, maximum is 100. Defaults to
            25.
          name: pageSize
          in: query
        - schema:
            type: string
            description: >-
              Search term to filter lists by name or description
              (case-insensitive).
          required: false
          description: >-
            Search term to filter lists by name or description
            (case-insensitive).
          name: search
          in: query
        - schema:
            type: string
            enum:
              - CONTACTS
              - COMPANIES
            description: Filter lists by type (CONTACTS or COMPANIES).
          required: false
          description: Filter lists by type (CONTACTS or COMPANIES).
          name: type
          in: query
      responses:
        '200':
          description: Successful response with paginated lists
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: number
                          description: Unique identifier for the list
                        name:
                          type: string
                          description: Name of the list
                        description:
                          type:
                            - string
                            - 'null'
                          description: Description of the list
                        type:
                          type: string
                          enum:
                            - CONTACTS
                            - COMPANIES
                          description: Type of the list (CONTACTS or COMPANIES)
                        appUrl:
                          type: string
                          format: uri
                          description: Direct Enginy app URL for opening this list.
                        entitiesCount:
                          type: number
                          description: Number of entities in the list
                        createdBy:
                          type: object
                          properties:
                            id:
                              type: number
                              description: ID of the user who created the list
                            name:
                              type:
                                - string
                                - 'null'
                              description: Name of the user who created the list
                          required:
                            - id
                            - name
                          description: User who created the list
                        createdAt:
                          type: string
                          format: date-time
                          description: Date and time when the list was created
                      required:
                        - id
                        - name
                        - description
                        - type
                        - appUrl
                        - entitiesCount
                        - createdBy
                        - createdAt
                  meta:
                    type: object
                    properties:
                      page:
                        type: number
                      pageSize:
                        type: number
                      total:
                        type: number
                    required:
                      - page
                      - pageSize
                      - total
                required:
                  - data
                  - meta
      security:
        - apiKey: []
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key

````