LogoLogo
DocsSupportDashboard
  • Introduction
    • Data Types
    • Target Filtering
    • Scan Selection
    • Pagination & Sorting
    • Permissions
    • Appendix
  • Authentication
  • Webhooks
  • Events
  • Appendix
    • Targets Filter
    • Date Match
    • IP Range
  • Endpoints
    • Discovery
    • Target
    • Scan
    • Issue
    • Tag
    • Port
    • DNS
    • HTTP
    • Whois
    • Technology
    • Website
    • Acknowledged
    • Event
    • Dark Web
    • Integration
    • PCI
    • Report
    • User
    • Account
    • Security
    • File
    • Work
Powered by GitBook

© 2024 Halo Security

On this page

Was this helpful?

  1. Endpoints

DNS

The DNS endpoint allows you to get a list of DNS records.

PreviousPortNextHTTP

Last updated 3 years ago

Was this helpful?

Get a list of DNS records

GET https://api.halosecurity.com/api/v1/dns/list.json

Returns a paginated list of DNS records.

Query Parameters

Name
Type
Description

sort

String

0

= none (default)

sort_desc

Integer

0 = No (default)

1 = Yes

type

String

Filter by type

value

String

Filter by value

host

String

Filter by host

{
    "list": [
        {
            "record": {
                "host": "www.example.com",
                "type": "a",
                "value": "0.0.0.0"
            },
            "target": {
                "target_name": "",
                "target_id": 1,
                "target": "www.example.com"
            }
        }
    ]
}
https://www.halosecurity.com/user/security/firewall/dns/list