Get strings extracted from the content downloaded during a URL analysis

This endpoint returns the list of printable strings extracted from the file downloaded during a URL Analysis. It is useful for triaging payloads dropped by a malicious URL (binaries, scripts, archives) without downloading the full file.

The strings are returned as a paginated list where each entry includes the string itself (value) and its encoding format (type), which can be either unicode or ascii:

{
  "data": [
    {
      "value": "<printable string>",
      "type": "ascii"
    },
    {
      "value": "<another string>",
      "type": "ascii"
    }
  ],
  "meta": {
    "cursor": "<opaque>"
  }
}

Path Params
string
required

URL analysis ID. Must match the format u-<sha256>-<suffix>. File analyses do not have a strings.

Query Params
int32
Defaults to 10

maximum number of strings to return in a single page. Max value 40.

string

Pagination cursor returned by a previous request

Headers
string
required

Your API key

Responses

Language
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json