Skip to main content
Every result DeepCurrent produces — intelligence package executions, completed growth runs, and BD job outputs — is saved to your account and available for download.

Where to find your results

Open the Downloads page at app.deepcurrent.app/downloads. Results are listed in reverse chronological order. Use the dashboard download buttons to export any result as JSON or CSV. Results are private to your account. No one else can access them.

What gets saved

SourceSaved when
Intelligence execute (vc-shortlist-v1, builder-discovery-v1, etc.)The execute step completes
Intelligence expand (contact unlock, increase limit)The expand step completes
Growth runThe run status reaches completed
BD jobThe job finishes processing

API access

List all your results with pagination and optional filtering:
curl "https://api.deepcurrent.app/api/v1/results?limit=20&offset=0" \
  -H "Authorization: Bearer YOUR_API_KEY"

Query parameters

ParameterTypeDescription
limitintegerNumber of results to return (1–100, default 50)
offsetintegerPagination offset (default 0)
tool_namestringFilter by tool name (e.g. vc-shortlist-v1, run_growth_plan)
chat_idUUIDFilter by chat session
order_bystringSort field: created_at or file_size (default created_at)
orderstringSort direction: asc or desc (default desc)

Example: filter by package

curl "https://api.deepcurrent.app/api/v1/results?tool_name=vc-shortlist-v1&limit=10" \
  -H "Authorization: Bearer YOUR_API_KEY"

Response

{
  "results": [
    {
      "id": "3fa85f64-...",
      "tool_name": "vc-shortlist-v1",
      "chat_title": "DeFi VC shortlist",
      "file_format": "json",
      "file_size": 14820,
      "created_at": "2025-04-08T12:34:56Z",
      "preview": {
        "package_id": "vc-shortlist-v1",
        "records_count": 10,
        "summary": "10 DeFi seed-stage VCs matched."
      }
    }
  ],
  "total": 1,
  "limit": 10,
  "offset": 0
}

Retrieve a single result

Fetch the full result data, including all records:
curl "https://api.deepcurrent.app/api/v1/results/3fa85f64-..." \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "id": "3fa85f64-...",
  "tool_name": "vc-shortlist-v1",
  "chat_title": "DeFi VC shortlist",
  "result_data": {
    "records": [ ... ],
    "summary": "10 DeFi seed-stage VCs matched."
  },
  "result_metadata": {},
  "file_format": "json",
  "file_size": 14820,
  "created_at": "2025-04-08T12:34:56Z"
}

Result fields reference

FieldDescription
idUnique result ID
tool_namePackage or tool that produced this result
file_formatjson or csv
file_sizeSize in bytes
created_atTimestamp when the result was saved
result_dataFull result payload including records
previewLightweight summary shown in list views