S&P Global · Capability

Kensho Link API — Entity Resolution

Kensho Link API — Entity Resolution. 2 operations. Lead operation: Get Entity by KEID. Self-contained Naftiko capability covering one S And P Global business surface.

Run with Naftiko S And P GlobalEntity Resolution

What You Can Do

GET
Getentity — Get Entity by KEID
/v1/entity/{keid}
POST
Linkentity — Link Entity to Canonical Identifier
/v1/link

MCP Tools

get-entity-keid

Get Entity by KEID

read-only idempotent
link-entity-canonical-identifier

Link Entity to Canonical Identifier

Capability Spec

kensho-link-entity-resolution.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Kensho Link API — Entity Resolution
  description: 'Kensho Link API — Entity Resolution. 2 operations. Lead operation: Get Entity by KEID. Self-contained Naftiko
    capability covering one S And P Global business surface.'
  tags:
  - S And P Global
  - Entity Resolution
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    S_AND_P_GLOBAL_API_KEY: S_AND_P_GLOBAL_API_KEY
capability:
  consumes:
  - type: http
    namespace: kensho-link-entity-resolution
    baseUri: https://api.link.kensho.com
    description: Kensho Link API — Entity Resolution business capability. Self-contained, no shared references.
    resources:
    - name: entity-keid
      path: /entity/{keid}
      operations:
      - name: getentity
        method: GET
        description: Get Entity by KEID
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: keid
          in: path
          type: string
          description: Kensho Entity Identifier (KEID) for the entity
          required: true
    - name: link
      path: /link
      operations:
      - name: linkentity
        method: POST
        description: Link Entity to Canonical Identifier
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.S_AND_P_GLOBAL_API_KEY}}'
  exposes:
  - type: rest
    namespace: kensho-link-entity-resolution-rest
    port: 8080
    description: REST adapter for Kensho Link API — Entity Resolution. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/entity/{keid}
      name: entity-keid
      description: REST surface for entity-keid.
      operations:
      - method: GET
        name: getentity
        description: Get Entity by KEID
        call: kensho-link-entity-resolution.getentity
        with:
          keid: rest.keid
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/link
      name: link
      description: REST surface for link.
      operations:
      - method: POST
        name: linkentity
        description: Link Entity to Canonical Identifier
        call: kensho-link-entity-resolution.linkentity
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: kensho-link-entity-resolution-mcp
    port: 9090
    transport: http
    description: MCP adapter for Kensho Link API — Entity Resolution. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: get-entity-keid
      description: Get Entity by KEID
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: kensho-link-entity-resolution.getentity
      with:
        keid: tools.keid
      outputParameters:
      - type: object
        mapping: $.
    - name: link-entity-canonical-identifier
      description: Link Entity to Canonical Identifier
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: kensho-link-entity-resolution.linkentity
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.