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

# List mailing lists

> Retrieve a list of your account's mailing lists.



## OpenAPI

````yaml /openapi.json get /v1/lists
openapi: 3.1.0
info:
  title: Loops OpenAPI Spec
  description: This is the OpenAPI Spec for the [Loops API](https://loops.so/docs/api).
  version: 1.21.0
servers:
  - url: https://app.loops.so/api
security: []
tags:
  - name: API key
  - name: Audience segments
    description: View audience segments
  - name: Campaigns
    description: Create and manage email campaigns
  - name: Campaign groups
    description: Organize campaigns into groups
  - name: Components
    description: View email components
  - name: Configuration
    description: View configuration settings
  - name: Contacts
    description: Manage contacts in your audience
  - name: Contact properties
    description: Manage contact properties
  - name: Email messages
    description: Manage email message content for campaigns
  - name: Events
    description: Trigger workflows with events
  - name: Event patterns
    description: View workflow event patterns
  - name: Mailing lists
    description: View mailing lists
  - name: Themes
    description: View email themes
  - name: Transactional emails
    description: Create, manage, and send transactional emails
  - name: Transactional groups
    description: Organize transactional emails into groups
  - name: Uploads
    description: Upload image assets
  - name: Workflows
    description: View and mutate workflow graphs
  - name: Workflow nodes
    description: View and mutate workflow nodes
paths:
  /v1/lists:
    get:
      tags:
        - Mailing lists
      summary: List mailing lists
      description: Retrieve a list of your account's mailing lists.
      responses:
        '200':
          description: Successful.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/MailingList'
        '405':
          description: Wrong HTTP request method.
      security:
        - apiKey: []
components:
  schemas:
    MailingList:
      type: object
      properties:
        id:
          type: string
          description: The ID of the mailing list.
        name:
          type: string
          description: The name of the mailing list.
        description:
          type:
            - string
            - 'null'
          description: The description of the mailing list.
        isPublic:
          type: boolean
          description: Whether the mailing list is public (`true`) or private (`false`).
      examples:
        - id: list_123
          name: Main mailing list
          description: Mailing list description
          isPublic: true
      required:
        - id
        - name
        - description
        - isPublic
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer

````

## Related topics

- [Segment](/docs/integrations/segment.md)
- [PostHog](/docs/integrations/posthog.md)
- [API Introduction](/docs/api-reference/intro.md)
- [Workflows](/docs/workflows.md)
- [Contact properties](/docs/contacts/properties.md)
