Ironclad · Capability

Ironclad Public API — Search

Ironclad Public API — Search. 1 operations across 1 resource paths. Self-contained Naftiko capability covering the Ironclad Search business surface.

Ironclad Public API — Search is a Naftiko capability published by Ironclad, one of 9 capabilities the APIs.io network indexes for this provider. It bundles 1 operation across the POST method rooted at /v1/search/conversational.

Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Ironclad and Search.

Run with Naftiko IroncladSearch

What You Can Do

POST
Run conversational search — Run Conversational Search
/v1/search/conversational

Capability Spec

search.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: "Ironclad Public API \u2014 Search"
  description: "Ironclad Public API \u2014 Search. 1 operations across 1 resource paths. Self-contained Naftiko capability\
    \ covering the Ironclad Search business surface."
  tags:
  - Ironclad
  - Search
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
- namespace: env
  keys:
    IRONCLAD_ACCESS_TOKEN: IRONCLAD_ACCESS_TOKEN
capability:
  consumes:
  - type: http
    namespace: search
    baseUri: https://na1.ironcladapp.com/public/api/v1
    description: Ironclad Search business capability.
    resources:
    - name: search-conversational
      path: /search/conversational
      operations: &id001
      - name: run-conversational-search
        method: POST
        description: Run Conversational Search
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: apikey
      key: Authorization
      value: Bearer {{env.IRONCLAD_ACCESS_TOKEN}}
      placement: header
  exposes:
  - type: rest
    namespace: search-rest
    port: 8080
    description: REST adapter for Ironclad Search. One resource per consumed operation.
    resources:
    - name: search-conversational
      path: /v1/search/conversational
      operations: *id001