POST
/
query
curl --request POST \
  --url https://api.urldna.io/query \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "query_filters": [
    {
      "attribute": "asn",
      "operator": "=",
      "value": "<string>"
    }
  ]
}'
[
  {
    "id": "<string>",
    "name": "<string>",
    "query_filters": [
      {
        "attribute": "asn",
        "operator": "=",
        "value": "<string>"
      }
    ]
  }
]

Authorizations

Authorization
string
header
required

Body

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

Response

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