# Get entries in the blocklist

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /blocklist/list:
    get:
      summary: Get entries in the blocklist
      deprecated: false
      description: Retrieve a list of blocklisted values for the specified workspace.
      operationId: Blocklist_blocklist/get-blocklist
      tags:
        - Blocklist
        - Blocklist
      parameters:
        - name: workspace_id
          in: query
          description: Unique identifier for the workspace.
          required: true
          schema:
            type: string
            description: Unique identifier for the workspace.
            default: ''
            examples:
              - 6764274d64169c4e88eec418
        - name: skip
          in: query
          description: Number of records to skip (pagination).
          required: false
          schema:
            type: integer
            description: Number of records to skip (pagination).
            default: '0'
            examples:
              - '0'
        - name: limit
          in: query
          description: Maximum number of records to retrieve (pagination).
          required: false
          schema:
            type: integer
            description: Maximum number of records to retrieve (pagination).
            default: '100'
            examples:
              - '100'
        - name: x-api-key
          in: header
          description: |
            Your PlusVibe.ai account's API Key
          required: true
          example: ''
          schema:
            type: string
            description: |
              Your PlusVibe.ai account's API Key
            default: ''
            examples:
              - your-api-key
      responses:
        '200':
          description: Successful response containing an array of blocklisted values.
          content:
            application/json:
              schema:
                type: object
                properties:
                  '0':
                    type: object
                    description: ''
                    properties:
                      _id:
                        type: string
                        description: ''
                        examples:
                          - 6752b7f964169c4e88596c9b
                      workspace_id:
                        type: string
                        description: ''
                        examples:
                          - 65099a0dd96fae8ab61130c1
                      value:
                        type: string
                        description: ''
                        examples:
                          - example1@gmail.com
                      created_by_label:
                        type: string
                        description: ''
                        examples:
                          - Programmatically added by John Doe
                      created_at:
                        type: string
                        description: ''
                        examples:
                          - '2024-12-26T15:58:33.933Z'
                    x-apidog-orders:
                      - _id
                      - workspace_id
                      - value
                      - created_by_label
                      - created_at
                  '1':
                    type: object
                    description: ''
                    properties:
                      _id:
                        type: string
                        description: ''
                        examples:
                          - 6764274d64169c4e88eec418
                      workspace_id:
                        type: string
                        description: ''
                        examples:
                          - 65099a0dd96fae8ab61130c1
                      value:
                        type: string
                        description: ''
                        examples:
                          - example2@gmail.com
                      created_by_label:
                        type: string
                        description: ''
                        examples:
                          - Programmatically added by John Doe
                      created_at:
                        type: string
                        description: ''
                        examples:
                          - '2024-12-19T14:01:49.293Z'
                    x-apidog-orders:
                      - _id
                      - workspace_id
                      - value
                      - created_by_label
                      - created_at
                x-apidog-orders:
                  - '0'
                  - '1'
          headers: {}
          x-apidog-name: OK
        '400':
          description: Bad request due to invalid parameters.
          content:
            application/json:
              schema:
                type: object
                properties: {}
                x-apidog-orders: []
          headers: {}
          x-apidog-name: Bad Request
        '500':
          description: Internal server error.
          content:
            application/json:
              schema:
                type: object
                properties: {}
                x-apidog-orders: []
          headers: {}
          x-apidog-name: Server Error
      security:
        - ApiKeyAuth: []
          x-apidog:
            schemeGroups:
              - id: uS5KiuC4wfZHK42AzOfA_
                schemeIds:
                  - ApiKeyAuth
            required: true
            use:
              id: uS5KiuC4wfZHK42AzOfA_
            scopes:
              uS5KiuC4wfZHK42AzOfA_:
                ApiKeyAuth: []
      x-apidog-folder: Blocklist
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/929054/apis/api-17238030-run
components:
  schemas: {}
  securitySchemes:
    ApiKeyAuth:
      type: apikey
      in: header
      name: x-api-key
      description: |
        API key issued in the PlusVibe dashboard. The server reads it
        from the `x-api-key` header and injects it into the request as
        the `api_key` query parameter, which is why you will see
        `api_key` referenced in validation errors.
    apiKey:
      type: apikey
      in: body
      name: api_key
      description: API key passed in request body
servers:
  - url: https://api.plusvibe.ai/api/v1
    description: Prod Env
security:
  - ApiKeyAuth: []
    x-apidog:
      schemeGroups:
        - id: uS5KiuC4wfZHK42AzOfA_
          schemeIds:
            - ApiKeyAuth
      required: true
      use:
        id: uS5KiuC4wfZHK42AzOfA_
      scopes:
        uS5KiuC4wfZHK42AzOfA_:
          ApiKeyAuth: []

```
