Inngest · Capability

Inngest REST API — Keys

Inngest Keys. Inspect account event keys (used for /e/{eventKey} ingestion) and signing keys (used for authenticated management API calls).

Inngest REST API — Keys is a Naftiko capability published by Inngest, one of 9 capabilities the APIs.io network indexes for this provider. It bundles 2 operations across the GET method rooted at /v1/keys.

The capability includes 2 read-only operations. Lead operation: List event keys for the account. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Inngest, Keys, Authentication, and Platform.

Run with Naftiko InngestKeysAuthenticationPlatform

What You Can Do

GET
V2fetchaccounteventkeys — List event keys for the account.
/v1/keys/events
GET
V2fetchaccountsigningkeys — List signing keys for the account.
/v1/keys/signing

MCP Tools

list-event-keys

List event keys for the account.

read-only idempotent
list-signing-keys

List signing keys for the account.

read-only idempotent

Capability Spec

inngest-keys.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Inngest REST API — Keys
  description: 'Inngest Keys. Inspect account event keys (used for /e/{eventKey} ingestion) and signing keys (used for authenticated management API calls).'
  tags:
  - Inngest
  - Keys
  - Authentication
  - Platform
  created: '2026-05-22'
  modified: '2026-05-22'
binds:
- namespace: env
  keys:
    INNGEST_SIGNING_KEY: INNGEST_SIGNING_KEY
capability:
  consumes:
  - type: http
    namespace: inngest-keys
    baseUri: https://api.inngest.com/v2
    description: Inngest Keys management surface (v2).
    resources:
    - name: keys-events
      path: /keys/events
      operations:
      - name: v2FetchAccountEventKeys
        method: GET
        description: List event keys for the account.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: keys-signing
      path: /keys/signing
      operations:
      - name: v2FetchAccountSigningKeys
        method: GET
        description: List signing keys for the account.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.INNGEST_SIGNING_KEY}}'
  exposes:
  - type: rest
    namespace: inngest-keys-rest
    port: 8080
    description: REST adapter for Inngest Keys.
    resources:
    - path: /v1/keys/events
      name: keys-events
      description: List event keys.
      operations:
      - method: GET
        name: v2FetchAccountEventKeys
        description: List event keys for the account.
        call: inngest-keys.v2FetchAccountEventKeys
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/keys/signing
      name: keys-signing
      description: List signing keys.
      operations:
      - method: GET
        name: v2FetchAccountSigningKeys
        description: List signing keys for the account.
        call: inngest-keys.v2FetchAccountSigningKeys
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: inngest-keys-mcp
    port: 9090
    transport: http
    description: MCP adapter for Inngest Keys.
    tools:
    - name: list-event-keys
      description: List event keys for the account.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: inngest-keys.v2FetchAccountEventKeys
      outputParameters:
      - type: object
        mapping: $.
    - name: list-signing-keys
      description: List signing keys for the account.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: inngest-keys.v2FetchAccountSigningKeys
      outputParameters:
      - type: object
        mapping: $.