Returns the details of a threat bulletin.
Path Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| threat_bulletin_id | string | optional | Pass the ID of a threat bulletin. |
Query Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| page | string | optional | Pass the page number to retrieve records. |
| page_size | string | optional | Pass the number of records to retrieve on each page. |
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/threat-bulletin/a3a785c5-1d11-46d9-8f86-9b0bd65ed8f8/?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/threat-bulletin/a3a785c5-1d11-46d9-8f86-9b0bd65ed8f8/?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/threat-bulletin/a3a785c5-1d11-46d9-8f86-9b0bd65ed8f8/"
params = {
"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.
{
"attachments": [],
"client_collections": {},
"confidence": "MEDIUM",
"created": 1685944400,
"created_by": {},
"description": "<h2>List of Objects</h2><table cy:data-table=\"c8ea7c80-af59-43f9-b890-364f527b8529\" style=\"width: 100%; padding: 16px 0px; border-spacing: 0px;\"><thead><tr><th cy:data-th=\"name\" style=\"padding: 2px 16px; border: 0.5px solid rgb(223, 226, 231); font-weight: 500; font-size: 14px; background: rgb(250, 251, 252);\">Value</th><th cy:data-th=\"type\" style=\"padding: 2px 16px; border: 0.5px solid rgb(223, 226, 231); font-weight: 500; font-size: 14px; background: rgb(250, 251, 252);\">Type</th><th cy:data-th=\"sources\" style=\"padding: 2px 16px; border: 0.5px solid rgb(223, 226, 231); font-weight: 500; font-size: 14px; background: rgb(250, 251, 252);\">Source</th></tr></thead><tbody><tr cy:data-tr=\"undefined\" cy:data-id=\"63fd8eb4-7ad9-4e27-8818-da4767efcaaa\" cy:data-ref=\"c8ea7c80-af59-43f9-b890-364f527b8529\"><td cy:data-td=\"name\" cy:data-id=\"63fd8eb4-7ad9-4e27-8818-da4767efcaaa\" cy:data-ref=\"c8ea7c80-af59-43f9-b890-364f527b8529\" style=\"padding: 2px 16px; word-break: break-all; font-size: 14px; border: 0.5px solid rgb(223, 226, 231); background: rgb(250, 251, 252);\">77.91.68.62</td><td cy:data-td=\"type\" style=\"padding: 2px 16px; word-break: break-all; font-size: 14px; border: 0.5px solid rgb(223, 226, 231); background: rgb(250, 251, 252);\">indicator</td><td cy:data-td=\"sources\" style=\"padding: 2px 16px; word-break: break-all; font-size: 14px; border: 0.5px solid rgb(223, 226, 231); background: rgb(250, 251, 252);\">CrowdStrike</td></tr></tbody></table>",
"id": "a3a785c5-1d11-46d9-8f86-9b0bd65ed8f8",
"metadata": "{\"is_added_object\":true,\"height\":640,\"width\":1064}",
"modified": 1686547577,
"modified_by": {},
"published": false,
"published_on": {},
"received": false,
"report_id": {},
"server_collections": {},
"status": "DRAFT",
"tags": {},
"title": "RedHat",
"tlp": "AMBER"
}View-only example — running live API calls requires a role with snippet testing access.