Tadeus API Templates API

The templates API from Tadeus API — 2 operation(s) for templates.

Operations 6

GET /templates/ #
POST /templates/ #
GET /templates/{uuid}/ #
PUT /templates/{uuid}/ #
PATCH /templates/{uuid}/ #
DELETE /templates/{uuid}/ #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/tadeus-api-templates-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

tadeus-api-templates-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Integration Templates API
  description: API Integration endpoints documentation
  version: v1
servers:
- url: https://app.tadeus.net/api/integration/v1
security:
- api_key: []
- api_secret: []
tags:
- name: templates
paths:
  /templates/:
    parameters: []
    get:
      operationId: templates_list
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Template'
      tags:
      - templates
    post:
      operationId: templates_create
      description: ''
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Template'
      tags:
      - templates
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Template'
        required: true
  /templates/{uuid}/:
    parameters:
    - name: uuid
      in: path
      required: true
      schema:
        type: string
    get:
      operationId: templates_read
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Template'
      tags:
      - templates
    put:
      operationId: templates_update
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Template'
      tags:
      - templates
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Template'
        required: true
    patch:
      operationId: templates_partial_update
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Template'
      tags:
      - templates
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Template'
        required: true
    delete:
      operationId: templates_delete
      description: ''
      responses:
        '204':
          description: ''
      tags:
      - templates
components:
  schemas:
    Template:
      required:
      - name
      type: object
      properties:
        uuid:
          title: Uuid
          description: Unique template identifier
          type: string
          format: uuid
          readOnly: true
        name:
          title: Name
          description: Template name
          type: string
          maxLength: 255
          minLength: 1
        version:
          title: Version
          description: Template version
          type: integer
          maximum: 2147483647
          minimum: 1
        interview_prompt:
          title: Interview prompt
          description: Prompt for the Interviewer Agent
          type: string
        summary_prompt:
          title: Summary prompt
          description: Prompt for summarization
          type: string
        insights_prompt:
          title: Insights prompt
          description: Prompt for producing insights from Results/Transcripts
          type: string
        output_schema:
          title: Output schema
          description: Expected structured output schema
          type: object
        status:
          title: Status
          description: Template status
          type: string
          enum:
          - draft
          - published
          - archived
        created_at:
          title: Created at
          type: string
          format: date-time
          readOnly: true
        updated_at:
          title: Updated at
          type: string
          format: date-time
          readOnly: true
        campaigns:
          title: Campaigns
          type: string
          readOnly: true
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: X-API-KEY-ID
    api_secret:
      type: apiKey
      in: header
      name: X-API-SECRET