Feeds
Get Linked Indicators
Retrieve indicators linked to a specific feed.
get/api/feed.php
Query parameters
keystring
Your Pulsedive API key.
API key authentication is optional. However, requests without a key have stricter rate limits. We recommend including an API key for better performance and reliability.
fidstring required
Example:1
Unique identifier of the feed to retrieve.
get'links' | 'properties' nullable required
Indicates which data subset to retrieve. Options include:
- links: Retrieves relationship data showing how the indicator connects to other objects.
- properties: Retrieves only the properties data, such as classification changes, sightings, timestamps, and related metadata. Use for better performance when you only need current property values or want to control response size.
summary1 | 0
Example:1
Summarize the data in the response.
For summarized data, set to 1. For full results, set to 0.
splitrisk1 | 0
Example:1
Split out indicator counts by risk level.
For risk breakdown, set to 1. For non-aggregated results, set to 0.
pretty0 | 1
Indicates whether to format returned JSON results.
For pretty-printed output, set to 1. For compact output, set to 0.
Response
Successful request. Returns linked indicators in JSON format.
Example response
{
"page_current": 0,
"results": [
{
"iid": 219,
"indicator": "servmill.com",
"type": "domain",
"risk": "medium",
"stamp_linked": "2018-05-08 14:56:18",
"summary": {
"properties": {
"geo": {
"country": "United Kingdom of Great Britain and Northern Ireland",
"region": "England",
"city": "REDACTED FOR PRIVACY",
"countrycode": "GB"
},
"whois": {
"++privacy": "1",
"++gdpr": "1"
}
}
}
}
]
}