Request IP Feed Information in Batch Mode
POST/ip-feed
A POST request to retrieve the IP feed information by IP address. Batch limit is 100 entries.
Request
- application/json
Body
required
Provides the IP feed information by a list of IP addresses. Limit is 100.
curl -v -X POST -H 'X-API-KEY: API_KEY' \
-H 'Content-Type: application/json' \
-d '{"ipaddr": ["185.130.5.200", "185.130.5.201", "185.130.5.202", "185.130.5.203", "185.130.5.204", "185.130.5.205", "185.130.5.206", "185.130.5.207", "185.130.5.208", "185.130.5.209", "185.130.5.210"]}' \
'https://api.threatvault.paloaltonetworks.com/service/v1/ip-feed'
Responses
- 200
- 4XX
- 5XX
Request succeeded
Response Headers
X-Day-RateLimit-Limit integer
Example: 2000The maximum number of requests that the user is permitted to make per day.
X-Day-RateLimit-Remaining integer
The number of requests remaining in the current rate limit window (one day).
X-Day-RateLimit-Reset integer
The epoch timestamp at which the current rate limit window (one day) resets.
X-Minute-RateLimit-Limit integer
Example: 200The maximum number of requests that the user is permitted to make per minute.
X-Minute-RateLimit-Remaining integer
The number of requests remaining in the current rate limit window (one minute).
X-Minute-RateLimit-Reset integer
The epoch timestamp at which the current rate limit window (one minute) resets.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
- Array [
- ]
The response status.
link object[]
The pagination information of the results.
The URL of previous page with results.
The URL of next page with results.
The total number of entries found.
data object[]
The data of the response.
The IP address.
The name of the IP Feed entry.
The status of the IP Feed entry.
release object
The release information.
The release version when the IP Feed was released.
The release time when the IP Feed was released.
Generic response message.
{
"success": true,
"link": [
{
"next": "string",
"previous": "string"
}
],
"count": 1,
"data": [
{
"ipaddr": "2.59.154.102",
"name": "High Risk IP Feed",
"status": "released",
"release": {
"first_release_version": "3566",
"first_release_time": "2020-12-16T23:40:24Z"
}
}
],
"message": "Successful"
}
Client related error response
- application/json
- Schema
- Example (from schema)
Schema
Generic response messa message.
The response status.
{
"message": "string",
"success": false
}
Server related error response
- application/json
- Schema
- Example (from schema)
Schema
Generic response messa message.
The response status.
{
"message": "string",
"success": false
}