GET
/
waap
/
v1
/
ip-reputation
Get a IP tags
curl --request GET \
  --url https://api.gcore.com/waap/v1/ip-reputation \
  --header 'Authorization: <api-key>'
{
  "limit": 123,
  "offset": 123,
  "count": 123,
  "results": [
    {
      "date": 123,
      "domain": {
        "id": 123,
        "name": "<string>"
      },
      "ip": "<string>",
      "local_tags": [
        "<string>"
      ],
      "global_tags": [
        "<string>"
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

API key for authentication. Make sure to include the word apikey, followed by a single space and then your token. Example: apikey 1234$abcdef

Query Parameters

ip
string<ipvanyaddress>
required

The IP address to check

ordering
enum<string>
default:-date

Sort the response by given field.

Available options:
date,
-date,
domain_name,
-domain_name
limit
integer
default:100

Number of items to return

Required range: 0 <= x <= 100
offset
integer
default:0

Number of items to skip

Required range: 0 <= x <= 100000

Response

Successful Response

limit
integer
required

Number of items requested in the response

offset
integer
required

Items response offset used

count
integer
required

Number of items contain in the response

results
LocalIpTagsRecord · object[]
required

List of items returned in the response following given criteria