Skip to main content
GET
/
iocs
cURL
curl -X GET "https://app.cotool.ai/iocs" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"
{
  "rows": [
    {
      "id": "<string>",
      "value": "<string>",
      "type": "<string>",
      "intelItemId": "<string>",
      "intelTitle": "<string>",
      "sourceLabel": "<string>",
      "lastCheckedAt": "<string>"
    }
  ],
  "total": 123,
  "page": 123,
  "perPage": 123,
  "hasNext": true,
  "statusCounts": {
    "found": 123,
    "clean": 123,
    "unchecked": 123,
    "unknown": 123
  },
  "availableTypes": [
    "<string>"
  ]
}

Authorizations

Authorization
string
header
required

API Key authentication for programmatic access. Include your API key in the Authorization header as: Bearer your_api_key_here

Query Parameters

page
number
Required range: x >= 1
perPage
number
Required range: 1 <= x <= 200
status
enum<string>
Available options:
found,
clean,
unchecked,
unknown
type
string

Response

Successful response

rows
object[]
required
total
number
required
page
number
required
perPage
number
required
hasNext
boolean
required
statusCounts
object
required
availableTypes
string[]
required