Skip to main content
GET
/
cache
/
tool-output
/
{cache_key}
Get Tool Output
curl --request GET \
  --url https://analyst.heyhumm.ai/cache/tool-output/{cache_key} \
  --header 'Authorization: Bearer <token>'
{
  "data": "<unknown>",
  "cache_key": "<string>",
  "cached_at": "<string>",
  "code": "<string>",
  "code_language": "<string>",
  "inputs": {}
}

Documentation Index

Fetch the complete documentation index at: https://heyhumm.ai/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

cache_key
string
required

Cache key for the tool output

Query Parameters

organization_id
string
required
thread_id
string | null

Thread ID for S3 cache lookup (optional)

Response

Successful Response

data
any
required

Cached tool output payload

cache_key
string
required

Cache key used to retrieve the tool output

cached_at
string | null

Timestamp when the output was cached, if available

code
string | null

Generated code associated with the cached output, if available

code_language
string | null

Language for the generated code, if available

inputs
Inputs · object

Tool inputs captured alongside the cached output, if available