GET
/api/ti/resources/search전체 리소스 통합 exact 검색
Query parameters
qstringrequiredhash, IP, domain, URL, CVE exact value
limitintegerResponses
200 OK400 Error401 Error500 Error
querystringdetected_typestringstrategystringunsupported_reasonstringresultsobject[]resourcestringlabelstringgroupstringmatched_columnstringmatched_valuestringcountintegerpreviewGenericObject[]detail_urlstringcURL
curl -X GET https://scti.in-bridge.com/api/ti/resources/search?q=string&limit=0 \
-H "Authorization: Bearer $TOKEN"JavaScript
const res = await fetch("https://scti.in-bridge.com/api/ti/resources/search", {
method: "GET",
headers: {
"Authorization": `Bearer ${token}`
}
});
const data = await res.json();Response 200
{
"query": "string",
"detected_type": "string",
"strategy": "string",
"unsupported_reason": "string",
"results": [
{
"resource": "string",
"label": "string",
"group": "string",
"matched_column": "string",
"matched_value": "string",
"count": 0,
"preview": [
null
],
"detail_url": "string"
}
]
}