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

# Domains by Score

> Retrieve a list of malicious domains



## OpenAPI

````yaml get /domains/score/{min_score}
openapi: 3.0.2
info:
  title: OneFirewall Alliance - OpenAPI 3.0
  description: >-
    The API documentation site serves as a comprehensive resource for developers
    looking to utilize the OneFirewall Platform's application programming
    interface (API). It offers in-depth information on API endpoints,
    parameters, responses, and authentication processes. Additionally, it
    features practical examples and code snippets to assist developers in
    integrating the API into their own applications. The website is crafted to
    be user-friendly, intuitive, and easily navigable, enabling developers to
    swiftly locate the necessary information to begin working with the API.
  termsOfService: https://onefirewall.com/eula.html
  contact:
    email: support@onefirewall.com
    url: https://onefirewall.com/contact.html
    name: Engineering Division
  license:
    name: ''
    url: ''
  version: V4.18.0
servers:
  - url: https://app.onefirewall.com/api/v1
    description: OneFirewall Server
    variables: {}
security: []
tags:
  - name: IPv4 Feeds
    description: ''
    externalDocs:
      description: ''
      url: ''
  - name: IoCs
    description: ''
    externalDocs:
      description: ''
      url: ''
  - name: Tools
    description: ''
    externalDocs:
      description: ''
      url: ''
  - name: URL Feeds
    description: ''
    externalDocs:
      description: ''
      url: ''
  - name: Domain Feeds
    description: ''
    externalDocs:
      description: ''
      url: ''
  - name: Security Binary Feeds
    description: ''
    externalDocs:
      description: ''
      url: ''
  - name: Secure VPN
    description: Secure VPN by OneFirewall
    externalDocs:
      description: ''
      url: ''
  - name: WCF Agent
    description: ''
    externalDocs:
      description: ''
      url: ''
externalDocs:
  description: http://docs.onefirewall.com
  url: http://app.onefirewall.com
paths:
  /domains/score/{min_score}:
    parameters:
      - in: path
        name: min_score
        description: Minimum WCF Crime Score Feeds
        schema:
          type: number
          exclusiveMinimum: true
          exclusiveMaximum: true
          minimum: 1
          maximum: 1000
        required: true
    get:
      tags:
        - Domain Feeds
      summary: Domains by Score
      description: Retrieve a list of malicious domains
      operationId: Domains by Score
      parameters:
        - in: query
          name: format
          description: >-
            CSV=the output is CSV, LIST=the output is a list of digest separated
            by ‘,’
          schema:
            type: string
            default: CSV
            enum:
              - CSV
              - LIST
        - in: query
          name: page
          description: >-
            A cursor that indicates the next page ID to access the next batch of
            data
          schema:
            type: string
        - in: query
          name: protocol
          description: "SHA256,SHA1 or MD5 (String)\t"
          schema:
            type: string
            enum:
              - HTTP
              - HTTPS
          required: true
      responses:
        '200':
          description: >+
            If the response header contains a variable with name next_page, use
            the value with the new request on the API in order to retreive the
            next batch of data for the same Score. If the header is not
            presented, means there no more data to return.


          headers: {}
          content:
            text/html:
              schema:
                type: string
              examples:
                example1:
                  value: |-
                    domain1.xyz
                    domain2.xyz
                    ...
        '400':
          content: {}
          headers: {}
          description: The request was malformed (body contains further explanations)
        '402':
          description: Not enough OneFirewall Coins to perform the request
          content: {}
          headers: {}
        '403':
          description: The request not authorized (body contains further explanations)
          content: {}
          headers: {}
        '404':
          description: The requested digest was not found
          content: {}
          headers: {}
      security:
        - Authorization: []
components:
  securitySchemes:
    Authorization:
      type: apiKey
      in: header
      description: Authorization Token
      name: Authorization

````