> ## 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.

# List blocklist entries

> Retrieve a paginated list of blocklist entries (blocked emails, LinkedIn URLs, domains, and company LinkedIn URLs).

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



## OpenAPI

````yaml https://openapi.enginy.ai/definitions.json get /v1/blocklist
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/blocklist:
    get:
      tags:
        - Blocklist
      summary: List blocklist entries
      description: >-
        Retrieve a paginated list of blocklist entries (blocked emails, LinkedIn
        URLs, domains, and company LinkedIn URLs).

            > **Required scope:** `BLOCKLIST_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: Case-insensitive substring match against the blocked value.
          required: false
          description: Case-insensitive substring match against the blocked value.
          name: search
          in: query
        - schema:
            type: string
            enum:
              - EMAIL
              - LINKEDIN_URL
              - DOMAIN
              - COMPANY_LINKEDIN_URL
            description: Filter by a specific blocked value type.
          required: false
          description: Filter by a specific blocked value type.
          name: type
          in: query
        - schema:
            type: string
            enum:
              - BLACKLIST
              - INBOX
              - WORKFLOW
              - CAMPAIGN
              - LIST
            description: Filter by the source that originally added the entry.
          required: false
          description: Filter by the source that originally added the entry.
          name: source
          in: query
        - schema:
            type: string
            enum:
              - NOT_INTERESTED
              - COMPETITOR
              - CUSTOMER
              - NOT_TARGET
              - OTHER
              - CHURN
            description: Filter by the reason the entry was added.
          required: false
          description: Filter by the reason the entry was added.
          name: reason
          in: query
      responses:
        '200':
          description: Paginated blocklist entries
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: number
                          description: Unique identifier for the blocklist item
                        type:
                          type: string
                          enum:
                            - EMAIL
                            - LINKEDIN_URL
                            - DOMAIN
                            - COMPANY_LINKEDIN_URL
                          description: The kind of value being blocked
                        value:
                          type: string
                          description: >-
                            The blocked value (email, domain, or normalized
                            LinkedIn URL)
                        source:
                          type: string
                          enum:
                            - BLACKLIST
                            - INBOX
                            - WORKFLOW
                            - CAMPAIGN
                            - LIST
                          description: Where this entry originated
                        reason:
                          type: string
                          enum:
                            - NOT_INTERESTED
                            - COMPETITOR
                            - CUSTOMER
                            - NOT_TARGET
                            - OTHER
                            - CHURN
                          description: Why this entry was added
                        expiresAt:
                          type:
                            - string
                            - 'null'
                          format: date-time
                          description: >-
                            When this entry expires. `null` means it never
                            expires.
                        createdAt:
                          type: string
                          format: date-time
                          description: When the entry was created
                        updatedAt:
                          type: string
                          format: date-time
                          description: When the entry was last updated
                        createdBy:
                          type: object
                          properties:
                            id:
                              type: number
                              description: ID of the user who created the entry
                            name:
                              type:
                                - string
                                - 'null'
                              description: Name of the user who created the entry
                          required:
                            - id
                            - name
                          description: User who created the blocklist entry
                      required:
                        - id
                        - type
                        - value
                        - source
                        - reason
                        - expiresAt
                        - createdAt
                        - updatedAt
                        - createdBy
                  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

````