Lever · Capability

Lever API — Interviews

Lever API — Interviews. 2 operations. Lead operation: List interviews. Self-contained Naftiko capability covering one Lever business surface.

Run with Naftiko LeverInterviews

What You Can Do

GET
Get — List interviews
/v1/opportunities/{opportunity}/interviews
GET
Get — List interview panels
/v1/opportunities/{opportunity}/panels

MCP Tools

list-interviews

List interviews

read-only idempotent
list-interview-panels

List interview panels

read-only idempotent

Capability Spec

lever-interviews.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Lever API — Interviews
  description: 'Lever API — Interviews. 2 operations. Lead operation: List interviews. Self-contained Naftiko capability covering
    one Lever business surface.'
  tags:
  - Lever
  - Interviews
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    LEVER_API_KEY: LEVER_API_KEY
capability:
  consumes:
  - type: http
    namespace: lever-interviews
    baseUri: https://api.lever.co/v1
    description: Lever API — Interviews business capability. Self-contained, no shared references.
    resources:
    - name: opportunities-opportunity-interviews
      path: /opportunities/{opportunity}/interviews
      operations:
      - name: get
        method: GET
        description: List interviews
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: opportunities-opportunity-panels
      path: /opportunities/{opportunity}/panels
      operations:
      - name: get
        method: GET
        description: List interview panels
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.LEVER_API_KEY}}'
  exposes:
  - type: rest
    namespace: lever-interviews-rest
    port: 8080
    description: REST adapter for Lever API — Interviews. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/opportunities/{opportunity}/interviews
      name: opportunities-opportunity-interviews
      description: REST surface for opportunities-opportunity-interviews.
      operations:
      - method: GET
        name: get
        description: List interviews
        call: lever-interviews.get
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/opportunities/{opportunity}/panels
      name: opportunities-opportunity-panels
      description: REST surface for opportunities-opportunity-panels.
      operations:
      - method: GET
        name: get
        description: List interview panels
        call: lever-interviews.get
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: lever-interviews-mcp
    port: 9090
    transport: http
    description: MCP adapter for Lever API — Interviews. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: list-interviews
      description: List interviews
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: lever-interviews.get
      outputParameters:
      - type: object
        mapping: $.
    - name: list-interview-panels
      description: List interview panels
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: lever-interviews.get
      outputParameters:
      - type: object
        mapping: $.