Bulk Export

If you're looking to pull the latest intelligence from the platform in bulk, look no further.

First, determine if you need the latest 'full' or 'incremental' export. Both export types are generated ~hourly.

Below, find the endpoint which will provide the latest export. You must provide an export_strategy and export_type or it will use defaults. Default values are shown below in the endpoint query parameters.

Current available export strategies are:

  • full

  • incremental

Current available export types are:

  • vuln_intel

A link will be provided that can be used to download the latest bulk export with the parameters provided. All bulk exports are provided in .tar.gz'd format.

Get Latest Export Url

get

Get a signed URL for the latest export.

Authorizations
Query parameters
export_typestringOptional

Type of export to retrieve

Default: vuln_intel
export_strategystringOptional

Export strategy: full or incremental

Default: incremental
expires_ininteger · min: 300 · max: 86400Optional

Signed URL expiration time in seconds (300-86400)

Default: 86400
Responses
200
Successful Response
application/json
get
GET /v1/exports/latest HTTP/1.1
Host: api.mallory.ai
Authorization: YOUR_API_KEY
Accept: */*
{
  "created_at": "2025-06-27T09:51:34.520Z",
  "expires_at": "text",
  "expires_in": 1,
  "export_strategy": "text",
  "export_type": "text",
  "filepath": "text",
  "generated_at": "2025-06-27T09:51:34.520Z",
  "id": 1,
  "signed_url": "text",
  "updated_at": "2025-06-27T09:51:34.520Z",
  "uuid": "text",
  "version": "text"
}

Last updated