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

# Get blacklist value

> Retrieves a single blacklist entry by its ID.



## OpenAPI

````yaml /products/specter/openapi.yaml get /api/admin/blacklist/{id}
openapi: 3.1.0
info:
  contact:
    email: support@hellgate.io
    name: Starfish GmbH & Co. KG
    url: https://hellgate.io/cpa/specter
  description: Composable decision engine and fraud prevention service.
  license:
    name: Hellgate API Terms
    url: https://hellgate.io/terms-and-conditions
  title: Specter API
  version: '1.0'
servers:
  - description: Managed instance of Specter
    url: https://{instance}.{env}.on-hellgate.cloud
    variables:
      instance:
        default: my-instance
        description: Your unique instance slug, provided during onboarding.
      env:
        default: eu1
        description: Deployment environment (currently eu1).
security: []
tags:
  - description: Evaluate transactions and retrieve decision results.
    name: Decisions
  - description: Close decisions that were flagged for manual review.
    name: Resolutions
  - description: Report payment lifecycle events for a prior decision.
    name: Lifecycle Events
  - description: Manage rulesets and their activation lifecycle.
    name: Rulesets
  - description: Register and version custom decision-payload schemas.
    name: Schemas
  - description: Configure interceptors and intercept live payment requests.
    name: Interceptors
  - description: Subscribe to decision and event notifications.
    name: Webhooks
  - description: Manage blocked field values.
    name: Blacklist
paths:
  /api/admin/blacklist/{id}:
    get:
      tags:
        - Blacklist
      summary: Get blacklist value
      description: Retrieves a single blacklist entry by its ID.
      operationId: admin_blacklist_show
      parameters:
        - description: ''
          in: path
          name: id
          required: true
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BlacklistValue'
          description: Blacklist value
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Unauthorized'
          description: Unauthorized
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Forbidden'
          description: Forbidden
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotFound'
          description: Not found
      callbacks: {}
      security:
        - bearerAuth: []
components:
  schemas:
    BlacklistValue:
      properties:
        id:
          example: 7d3b9f1e-4a6c-4c8d-b2e5-1f8a4c6e9d3b
          format: uuid
          type: string
        display_hint:
          example: 411111 •••••• 4242
          description: >-
            Human-readable hint, e.g. masked PAN for `$.credential_fingerprint`
            entries.
          type:
            - string
            - 'null'
        expires_at:
          example: '2026-09-01T00:00:00Z'
          description: When the entry expires. Null means it never expires.
          format: date-time
          type:
            - string
            - 'null'
        field_path:
          description: JSON path of the field, e.g. `$.device.ip`.
          example: $.device.ip
          type: string
        inserted_at:
          example: '2026-06-01T10:00:05Z'
          format: date-time
          type: string
        source_decision_id:
          example: 1e7b9c0a-2d43-4f6a-8d29-c4a1f2d05b3e
          description: ID of the decision that triggered this entry.
          format: uuid
          type:
            - string
            - 'null'
        updated_at:
          example: '2026-06-01T10:00:05Z'
          format: date-time
          type: string
        value:
          description: The blacklisted value for this field.
          example: 1.2.3.4
          type: string
      title: BlacklistValue
      type: object
    Unauthorized:
      description: No valid authentication was provided.
      example:
        classifier: UNAUTHORIZED
        code: 401
        message: No valid means of authentication was provided
      properties:
        classifier:
          enum:
            - UNAUTHORIZED
          type: string
        code:
          enum:
            - 401
          type: integer
        message:
          type: string
      required:
        - classifier
        - code
        - message
      title: Unauthorized
      type: object
    Forbidden:
      description: The token lacks the scope required for this operation.
      example:
        classifier: FORBIDDEN
        code: 403
        message: Not allowed to access this resource or feature
      properties:
        classifier:
          enum:
            - FORBIDDEN
          type: string
        code:
          enum:
            - 403
          type: integer
        message:
          type: string
      required:
        - classifier
        - code
        - message
      title: Forbidden
      type: object
    NotFound:
      description: The requested resource does not exist.
      example:
        classifier: NOT_FOUND
        code: 404
        message: The requested resource does not exist
      properties:
        classifier:
          enum:
            - NOT_FOUND
          type: string
        code:
          enum:
            - 404
          type: integer
        message:
          type: string
      required:
        - classifier
        - code
        - message
      title: NotFound
      type: object
  securitySchemes:
    bearerAuth:
      bearerFormat: JWT
      description: >-
        HS256-signed JWT bearer token, obtained via the OAuth2
        client-credentials grant (see Authentication).
      scheme: bearer
      type: http

````