Skip to main content
GET
/
v1
/
query
/
{query_id}
Get query object
curl --request GET \
  --url https://api.urldna.io/v1/query/{query_id} \
  --header 'Authorization: <api-key>'
{
  "id": "<string>",
  "name": "<string>",
  "query_filters": [
    {
      "attribute": "asn",
      "operator": "=",
      "value": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Path Parameters

query_id
string
required

Response

Query object

Represents a saved query containing multiple filters to retrieve relevant scan data.

name
string
required

A user-defined name for the query.

query_filters
object[]
required

A list of filtering conditions that define the query criteria.

id
string

Unique identifier for the query.

I