Skip to main content
POST
/
v2
/
entity-resolution
Normalize and disambiguate entity inputs (LLM-free)
curl --request POST \
  --url https://api.kyberis.ai/v2/entity-resolution \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "query": "<string>",
  "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>"
    ]
  },
  "expected_types": [
    "<string>"
  ],
  "resolution": {
    "include_aliases": false,
    "include_metadata": false,
    "max_results": 5
  }
}
'
{
  "input": "<string>",
  "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
  }
}

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
query
string
required
Maximum string length: 1024
agent_context
AgentContext · object
expected_types
string[] | null
resolution
ResolutionOptions · object

Response

Successful Response

input
string
required
resolution
ResolutionResult · object
required