Returns the details for a particular RSS feed source.
Path Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| feed_id | string | required | Pass the RSS feed ID. |
Query Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| page | integer | optional | Pass the page number to retrieve the RSS feed source. |
| page_size | integer | optional | Pass the number of RSS feed sources to be retrieved on each page. |
| created_from | integer | optional | Pass the created time in epoch format to filter the RSS feed source. |
| created_to | integer | optional | Pass the created time in epoch format to filter the RSS feed source. |
| q | string | optional | Pass the keyword to search the RSS feed source based on the title. |
| is_active | string | optional | Pass true to retrieve active RSS feed sources, else false. |
Run it
Use the Request parameters panel to enter path IDs, query values, JSON body, and credentials. Then run any snippet below — all languages use the same values. Base URL: https://cs-testv2.cyware.com/ctixapi (change in API Settings).
Playground
Request parameters
Edit values here before running any snippet below (cURL, JavaScript, or Python). Code blocks are reference only — your inputs above are what gets sent.
Open API (HMAC signature) · Get credentials from Cyware Admin → Open API → Generate Credentials.
Signature and Expires are generated when you run a request. Access ID and Secret Key stay in memory for this tab only.
Credentials from Authentication auto-fill here for this product. If fields are empty after connecting, refresh this page or open the product docs again.
curl --request GET \
--url "https://cs-testv2.cyware.com/ctixapi/conversion/feed-sources/rss_feed/1932e7a9-f772-47f2-a199-256250f5edba/?page=1&page_size=10&created_from=1720483209&created_to=1721951999&is_active=true&AccessID=%3Cyour%20access%20id%3E&Signature=%3Cyour%20signature%3E&Expires=%3Cyour%20expires%3E"View-only example — running live API calls requires a role with snippet testing access.
const url = "https://cs-testv2.cyware.com/ctixapi/conversion/feed-sources/rss_feed/1932e7a9-f772-47f2-a199-256250f5edba/?page=1&page_size=10&created_from=1720483209&created_to=1721951999&is_active=true&AccessID=%3Cyour%20access%20id%3E&Signature=%3Cyour%20signature%3E&Expires=%3Cyour%20expires%3E";
const response = await fetch(url, {
method: "GET",
});
const text = await response.text();
let data;
try { data = JSON.parse(text); } catch { data = text; }
console.log(response.status, data);View-only example — running live API calls requires a role with snippet testing access.
import requests
url = "https://cs-testv2.cyware.com/ctixapi/conversion/feed-sources/rss_feed/1932e7a9-f772-47f2-a199-256250f5edba/"
params = {
"page": "1",
"page_size": "10",
"created_from": "1720483209",
"created_to": "1721951999",
"is_active": "true",
"AccessID": "<your access id>",
"Signature": "<your signature>",
"Expires": "<your expires>"
}
headers = {}
response = requests.request("GET", url, params=params, headers=headers)
print(response.status_code)
print(response.text)View-only example — running live API calls requires a role with snippet testing access.
{
"id": "193ne7a9-f772-47f2-a199-256250f5edba",
"name": "CywareNews",
"created_by": "fd9kad0c-208e-4b6d-85eb-feda34afc1e8",
"modified_by": "fd98ad0c-2g8e-4b6d-85eb-feda34afc1e8",
"is_active": true,
"created": 1721122289,
"score": 100,
"status": true,
"is_editable": true,
"description": {},
"category": {},
"source_order": 10,
"source_type": "RSS_FEED",
"create_intel_feed": false,
"ssl_encrypted": true,
"last_feed_notify": 1440,
"source_logo": {},
"default_metadata": {},
"url": "http://100.50.7.110/rss/Test-2",
"polling_frequency": 10,
"parse_visible_content_only": false,
"intel_objects": {},
"taxii_option": "2.1"
}View-only example — running live API calls requires a role with snippet testing access.