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

# List Radar Breaches

> List Radar breaches with filters, sorting, and pagination. Free plan endpoint that requires an API key.



## OpenAPI

````yaml GET /radar/breaches
openapi: 3.1.0
info:
  title: Osintly API
  version: 1.0.0
  description: OpenAPI specification for the Osintly API service.
  contact:
    name: Osintly
    url: https://docs.osint.ly/api-reference/quick-start
servers:
  - url: https://api.osint.ly
    description: Production
security: []
tags:
  - name: System
    description: Health and service checks
  - name: Auth
    description: Authorization validation
  - name: Search
    description: Create, monitor and retrieve search results
  - name: Usage
    description: Rate limit and usage information
  - name: Radar
    description: Breach intelligence endpoints (free with API key)
  - name: Webhooks
    description: Webhook callback payloads configured from search creation
paths:
  /radar/breaches:
    get:
      tags:
        - Radar
      summary: List Radar breaches
      description: >-
        Return breach entries with filtering, sorting, and pagination. Radar is
        available on the Free plan and requires a bearer API key.
      operationId: listRadarBreaches
      parameters:
        - name: page
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            default: 1
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            maximum: 50
            default: 12
        - name: search
          in: query
          required: false
          schema:
            type: string
          description: Search by breach name, title, or domain
        - name: severity
          in: query
          required: false
          schema:
            type: string
            enum:
              - all
              - critical
              - high
              - medium
            default: all
        - name: exposure
          in: query
          required: false
          schema:
            type: string
            enum:
              - all
              - 100k+
              - 1m+
              - 10m+
              - 100m+
            default: all
        - name: startDate
          in: query
          required: false
          schema:
            type: string
            pattern: ^\d{4}-\d{2}-\d{2}$
            example: '2024-01-01'
        - name: endDate
          in: query
          required: false
          schema:
            type: string
            pattern: ^\d{4}-\d{2}-\d{2}$
            example: '2024-12-31'
        - name: sortBy
          in: query
          required: false
          schema:
            type: string
            enum:
              - recently-added
              - breach-newest
              - breach-oldest
              - largest-exposure
            default: recently-added
      responses:
        '200':
          description: Radar breach list
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RadarBreachesResponse'
        '400':
          $ref: '#/components/responses/ValidationError'
        '401':
          $ref: '#/components/responses/UnauthorizedError'
        '403':
          $ref: '#/components/responses/PlanFeatureRequiredError'
        '500':
          $ref: '#/components/responses/InternalError'
      security:
        - bearerAuth: []
components:
  schemas:
    RadarBreachesResponse:
      type: object
      required:
        - breaches
        - pagination
      properties:
        breaches:
          type: array
          items:
            $ref: '#/components/schemas/RadarBreachListItem'
        pagination:
          $ref: '#/components/schemas/RadarPagination'
    RadarBreachListItem:
      type: object
      required:
        - id
        - name
        - title
        - domain
        - breachDate
        - addedDate
        - pwnCount
        - severity
        - shortDescription
      properties:
        id:
          type: string
          format: uuid
        name:
          type: string
        title:
          type: string
        domain:
          type: string
        breachDate:
          type: string
          format: date
        addedDate:
          type: string
          format: date
        pwnCount:
          type: integer
        severity:
          $ref: '#/components/schemas/RadarSeverity'
        shortDescription:
          type:
            - string
            - 'null'
    RadarPagination:
      type: object
      required:
        - page
        - limit
        - total
        - totalPages
        - hasNext
        - hasPrev
      properties:
        page:
          type: integer
        limit:
          type: integer
        total:
          type: integer
        totalPages:
          type: integer
        hasNext:
          type: boolean
        hasPrev:
          type: boolean
    ValidationErrorResponse:
      type: object
      required:
        - error
        - meta
      properties:
        error:
          type: object
          required:
            - code
            - message
            - details
          properties:
            code:
              type: string
              enum:
                - VALIDATION_ERROR
            message:
              type: string
              enum:
                - Invalid request parameters
            details:
              type: array
              items:
                $ref: '#/components/schemas/ValidationIssue'
        meta:
          $ref: '#/components/schemas/ResponseMeta'
    BasicErrorResponse:
      type: object
      required:
        - success
        - message
      properties:
        success:
          type: boolean
          enum:
            - false
        message:
          type: string
      additionalProperties: true
    SearchApiErrorResponse:
      type: object
      required:
        - error
        - meta
      properties:
        error:
          type: object
          required:
            - code
            - message
          properties:
            code:
              type: string
            message:
              type: string
            details:
              oneOf:
                - type: string
                - type: array
                  items:
                    $ref: '#/components/schemas/ValidationIssue'
        meta:
          $ref: '#/components/schemas/ResponseMeta'
    InternalErrorResponse:
      allOf:
        - $ref: '#/components/schemas/BasicErrorResponse'
        - type: object
          properties:
            message:
              type: string
              enum:
                - Internal server error
    RadarSeverity:
      type: string
      enum:
        - critical
        - high
        - medium
    ValidationIssue:
      type: object
      required:
        - path
        - message
      properties:
        path:
          type: string
        message:
          type: string
    ResponseMeta:
      type: object
      required:
        - timestamp
      properties:
        environment:
          type: string
        timestamp:
          type: string
          format: date-time
  responses:
    ValidationError:
      description: Request validation error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ValidationErrorResponse'
    UnauthorizedError:
      description: Unauthorized
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/BasicErrorResponse'
          examples:
            unauthorized:
              value:
                success: false
                message: Unauthorized
    PlanFeatureRequiredError:
      description: Plan feature required
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/SearchApiErrorResponse'
          examples:
            radar_feature_missing:
              value:
                error:
                  code: PLAN_FEATURE_REQUIRED
                  message: Plan feature required
                  details: Your plan does not include the radar feature
                meta:
                  timestamp: '2026-06-23T12:00:00.000Z'
    InternalError:
      description: Internal server error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/InternalErrorResponse'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key

````