> ## 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.

# Pre-compiled IPv4

> If you need a simple list (example CSV) to retrieve all the IPv4 feeds based on their score, you can use the below API



## OpenAPI

````yaml get /flat/{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:
  /flat/{min_score}:
    parameters:
      - in: path
        name: min_score
        description: ''
        schema:
          type: number
          exclusiveMinimum: true
          exclusiveMaximum: true
          minimum: 1
          maximum: 1000
        required: true
    get:
      tags:
        - IPv4 Feeds
      summary: Pre-compiled IPv4
      description: >-
        If you need a simple list (example CSV) to retrieve all the IPv4 feeds
        based on their score, you can use the below API
      operationId: Pre-compiled CSV of IPv4 based on Min Score
      parameters:
        - in: query
          name: list
          description: >-
            NO=the output is CSV, YES=the output is a list of IPs separated by
            ‘,’
          schema:
            type: string
            default: 'NO'
            enum:
              - 'YES'
              - 'NO'
      responses:
        '200':
          description: >+
            In case of an 200 response the body will be presented as the below
            examples:

          headers: {}
          content:
            text/html:
              schema:
                type: string
              examples:
                example1:
                  value: >-
                    IPv4,LiveScore,Members,Reports,LastUpdate,AS,ASN,CDN,Reverse,IS_CDN

                    X.Y.Z.W,216,3,21,2023-04-29T04:43:54.000Z,<ASXXXX>,<Autonomous
                    System Name>,<CDN Name>,<reverse DNS query>,<'Well-known
                    CDN' in case of Valid CDN>

                    X.Y.Z.W,211,3,45,2023-04-28T09:21:50.000Z,<ASXXXX>,<Autonomous
                    System Name>,<CDN Name>,<reverse DNS query>,<'Well-known
                    CDN' in case of Valid CDN>

                    X.Y.Z.W,217,3,32,2023-04-29T05:54:04.000Z,<ASXXXX>,<Autonomous
                    System Name>,<CDN Name>,<reverse DNS query>,<'Well-known
                    CDN' in case of Valid CDN>

                    X.Y.Z.W,204,3,53,2023-04-29T04:58:13.000Z,<ASXXXX>,<Autonomous
                    System Name>,<CDN Name>,<reverse DNS query>,<'Well-known
                    CDN' in case of Valid CDN>

                    .....
      security:
        - Authorization: []
components:
  securitySchemes:
    Authorization:
      type: apiKey
      in: header
      description: Authorization Token
      name: Authorization

````