Skip to main content

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

Body

required
    ipaddr string[]

    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

Request succeeded

Response Headers
  • X-Day-RateLimit-Limit integer
    Example: 2000

    The 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: 200

    The 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.

Schema
    success boolean

    The response status.

    link object[]

    The pagination information of the results.

  • Array [
  • next string

    The URL of previous page with results.

    previous string

    The URL of next page with results.

  • ]
  • count integer

    The total number of entries found.

    data object[]

    The data of the response.

  • Array [
  • ipaddr string

    The IP address.

    name string

    The name of the IP Feed entry.

    status string

    The status of the IP Feed entry.

    release object

    The release information.

    first_release_version string

    The release version when the IP Feed was released.

    first_release_time string

    The release time when the IP Feed was released.

  • ]
  • message string

    Generic response message.

Loading...