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

# Get Blacklist Entry

> Retrieves a specific blacklist entry by its ID



## OpenAPI

````yaml GET /blacklists/{id}
openapi: 3.0.1
info:
  title: MC License API
  description: API for validating and managing Minecraft plugin licenses
  version: 1.0.0
  license:
    name: MIT
servers:
  - url: https://api.mclicense.org
    description: Production API Server
security:
  - apiKey: []
paths:
  /blacklists/{id}:
    get:
      summary: Get a blacklist entry
      description: Retrieves a specific blacklist entry by its ID
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Blacklist entry details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Blacklist'
components:
  schemas:
    Blacklist:
      type: object
      required:
        - ip
      properties:
        _id:
          type: string
          readOnly: true
          description: Unique identifier for the blacklist entry
        ip:
          type: string
          description: Blacklisted IPv4 address
        reason:
          type: string
          description: Optional reason for blacklisting
        createdAt:
          type: string
          format: date-time
          readOnly: true
          description: Timestamp when the entry was created
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: MCL-Key
      description: API key must start with 'mcl_'

````