GET
/
query
/
{query_id}
curl --request GET \
  --url https://api.urldna.io/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

200
application/json
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.

Defines a filtering condition for queries, specifying an attribute, an operator, and a value to match.

id
string

Unique identifier for the query.