Catalog/chef-extract-iocs

Data Transform

IOC extractor API

Extract URLs, domains, IP addresses, email addresses, and common hashes from text.

Price$0.01per request
MethodPOST
Route/v1/chef/extract-iocs
StatusLive
MIME typeapplication/json
Rate limit180/minute
CacheNo cache
data-transformiocosintsecurityregex
API URLhttps://x402.hexl.dev/v1/chef/extract-iocs
Integration docs
Example request
{
  "text": "Visit https://example.com and email security@example.com."
}
Example response
{
  "urls": [
    "https://example.com"
  ],
  "domains": [
    "example.com"
  ],
  "ips": [],
  "emails": [
    "security@example.com"
  ],
  "hashes": [],
  "provider": "local-regex"
}
Input schema
{
  "type": "object",
  "required": [
    "text"
  ],
  "properties": {
    "text": {
      "type": "string",
      "minLength": 1,
      "maxLength": 20000
    }
  }
}
Output schema
{
  "type": "object",
  "required": [
    "urls",
    "domains",
    "ips",
    "emails",
    "hashes",
    "provider"
  ],
  "properties": {
    "urls": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "domains": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "ips": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "emails": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "hashes": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": true
      }
    },
    "provider": {
      "type": "string"
    }
  }
}