Skip to main content
POST
/
v2
/
evidence
Claim-based evidence retrieval (LLM-free)
curl --request POST \
  --url https://api.kyberis.ai/v2/evidence \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "agent_context": {
    "objective": "<string>",
    "requested_outcome": "<string>",
    "run_id": "<string>",
    "step_id": "<string>",
    "client": {
      "agent_name": "<string>",
      "agent_version": "<string>",
      "framework": "<string>"
    },
    "constraints": {
      "latency_budget_ms": 15025,
      "max_results_budget": 100,
      "min_resolution_confidence": 0.5,
      "strict_mode": true
    },
    "parent_step_id": "<string>",
    "tags": [
      "<string>"
    ]
  },
  "context": {
    "sector": "<string>"
  },
  "cursor": "<string>",
  "expected_types": [
    "<string>"
  ],
  "max_results": 10,
  "query": "<string>",
  "resolution": {
    "include_aliases": false,
    "include_metadata": false,
    "max_results": 5
  },
  "subject": {
    "canonical_id": "<string>",
    "entity_type": "<string>",
    "canonical_name": "<string>"
  }
}
'
{
  "context": {
    "sector": "<string>"
  },
  "items": [
    {
      "evidence_id": "<string>",
      "evidence_type": "<string>",
      "support_score": 123,
      "attributes": {},
      "published_date": "<string>",
      "source_url": "<string>",
      "summary_stub": "<string>",
      "title": "<string>"
    }
  ],
  "max_results": 123,
  "metadata": {},
  "resolution": {
    "candidates": [
      {
        "canonical_id": "<string>",
        "canonical_name": "<string>",
        "entity_type": "<string>",
        "match_type": "<string>",
        "score": 123,
        "aliases": [
          "<string>"
        ],
        "matched_on": "<string>",
        "metadata": {}
      }
    ],
    "canonical_id": "<string>",
    "canonical_name": "<string>",
    "entity_type": "<string>",
    "resolution_confidence": 123
  },
  "next_cursor": "<string>",
  "subject": {
    "canonical_id": "<string>",
    "entity_type": "<string>",
    "canonical_name": "<string>"
  }
}

Documentation Index

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

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

Authorizations

Authorization
string
header
required

ApiKey <key_id>:

Body

application/json
claim_type
enum<string>
required
Available options:
active_exploitation,
sector_targeting,
actor_association,
campaign_association,
malware_association,
relevance_to_environment,
observed_in_the_wild
agent_context
AgentContext · object
context
ClaimEvidenceContext · object
cursor
string | null
Maximum string length: 512
expected_types
string[] | null
max_results
integer
default:10
Required range: 1 <= x <= 50
query
string | null
Maximum string length: 1024
resolution
ResolutionOptions · object
subject
AssessmentSubject · object

Response

Successful Response

claim_type
enum<string>
required
Available options:
active_exploitation,
sector_targeting,
actor_association,
campaign_association,
malware_association,
relevance_to_environment,
observed_in_the_wild
context
ClaimEvidenceContext · object
required
input_mode
enum<string>
required
Available options:
subject,
query
items
ClaimEvidenceItem · object[]
required
max_results
integer
required
metadata
Metadata · object
required
resolution
ResolutionResult · object
required
status
enum<string>
required
Available options:
ok,
no_evidence
next_cursor
string | null
subject
AssessmentSubject · object