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

# List blocked entities



## OpenAPI

````yaml openapi/fraud.yaml get /fraud/blocklist
openapi: 3.0.3
info:
  title: TXCloud FraudShield API
  version: 1.0.0
  description: |
    The TXCloud FraudShield API provides fraud detection signals that enhance 
    identity verification, plus tools to manage fraud rules, blocklists, and 
    investigate suspicious activity.

    ## How It Works
    FraudShield is called internally by the Identity API during verification.
    Clients receive fraud signals in the verification response. These endpoints
    are for configuration, investigation, and advanced use cases.
  contact:
    name: TXCloud API Support
    email: support@txcloud.io
servers:
  - url: https://api.txcloud.io/v1
    description: Production
  - url: https://sandbox.api.txcloud.io/v1
    description: Sandbox
security:
  - BearerAuth: []
tags:
  - name: Duplicates
    description: Duplicate detection across verifications
  - name: Devices
    description: Device intelligence and fingerprinting
  - name: Velocity
    description: Rate limiting and velocity controls
  - name: Blocklist
    description: Blocklist management
  - name: Rules
    description: Custom fraud rules engine
  - name: Signals
    description: Fraud signal reporting and management
  - name: Analytics
    description: Fraud analytics and reporting
paths:
  /fraud/blocklist:
    get:
      tags:
        - Blocklist
      summary: List blocked entities
      operationId: listBlocklist
      parameters:
        - name: type
          in: query
          schema:
            type: string
            enum:
              - device
              - ip
              - email
              - phone
              - document
        - name: limit
          in: query
          schema:
            type: integer
      responses:
        '200':
          description: Blocked entities
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BlocklistEntries'
components:
  schemas:
    BlocklistEntries:
      type: object
      properties:
        object:
          type: string
        data:
          type: array
          items:
            $ref: '#/components/schemas/BlocklistEntry'
    BlocklistEntry:
      type: object
      properties:
        id:
          type: string
        type:
          type: string
          enum:
            - device
            - ip
            - email
            - phone
            - document
        value:
          type: string
        reason:
          type: string
        expires_at:
          type: string
          format: date-time
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````