Tadeus API Insights API

The insights API from Tadeus API — 6 operation(s) for insights.

Operations 10

GET /insights/ #
POST /insights/ #
GET /insights/{uuid}/ #
PUT /insights/{uuid}/ #
PATCH /insights/{uuid}/ #
DELETE /insights/{uuid}/ #
GET /insights/{uuid}/html/ #
GET /insights/{uuid}/lexical/ #
GET /insights/{uuid}/md/ #
GET /insights/{uuid}/pdf/ #

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-insights-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-insights-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Integration Insights API
  description: API Integration endpoints documentation
  version: v1
servers:
- url: https://app.tadeus.net/api/integration/v1
security:
- api_key: []
- api_secret: []
tags:
- name: insights
paths:
  /insights/:
    parameters: []
    get:
      operationId: insights_list
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/InsightList'
      tags:
      - insights
    post:
      operationId: insights_create
      description: ''
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Insight'
      tags:
      - insights
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Insight'
        required: true
  /insights/{uuid}/:
    parameters:
    - name: uuid
      in: path
      required: true
      schema:
        type: string
    get:
      operationId: insights_read
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Insight'
      tags:
      - insights
    put:
      operationId: insights_update
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Insight'
      tags:
      - insights
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Insight'
        required: true
    patch:
      operationId: insights_partial_update
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Insight'
      tags:
      - insights
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Insight'
        required: true
    delete:
      operationId: insights_delete
      description: ''
      responses:
        '204':
          description: ''
      tags:
      - insights
  /insights/{uuid}/html/:
    parameters:
    - name: uuid
      in: path
      required: true
      schema:
        type: string
    get:
      operationId: insights_html
      description: 'Return the insight as a rendered HTML document.

        GET /api/integration/v1/insights/{uuid}/html/'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Insight'
      tags:
      - insights
  /insights/{uuid}/lexical/:
    parameters:
    - name: uuid
      in: path
      required: true
      schema:
        type: string
    get:
      operationId: insights_lexical
      description: 'Return the insight content converted to Lexical format.

        GET /api/integration/v1/insights/{uuid}/lexical/'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Insight'
      tags:
      - insights
  /insights/{uuid}/md/:
    parameters:
    - name: uuid
      in: path
      required: true
      schema:
        type: string
    get:
      operationId: insights_markdown
      description: 'Return the insight content as a Markdown document.

        GET /api/integration/v1/insights/{uuid}/md/'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Insight'
      tags:
      - insights
  /insights/{uuid}/pdf/:
    parameters:
    - name: uuid
      in: path
      required: true
      schema:
        type: string
    get:
      operationId: insights_pdf
      description: 'Return the insight as a downloadable PDF.

        GET /api/integration/v1/insights/{uuid}/pdf/'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Insight'
      tags:
      - insights
components:
  schemas:
    InsightList:
      type: object
      properties:
        uuid:
          title: Uuid
          description: Unique insight identifier
          type: string
          format: uuid
        created_at:
          title: Created at
          type: string
          format: date-time
          readOnly: true
    Insight:
      required:
      - content
      type: object
      properties:
        uuid:
          title: Uuid
          description: Unique insight identifier
          type: string
          format: uuid
        executive_summary:
          title: Executive summary
          description: Plain text summary for list previews
          type:
          - string
          - 'null'
        content:
          title: Content
          description: The generated insight content
          type: string
          minLength: 1
        output_json_summary:
          title: Output json summary
          description: Aggregated JSON summary based on output_schema
          type: object
        created_at:
          title: Created at
          type: string
          format: date-time
          readOnly: true
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: X-API-KEY-ID
    api_secret:
      type: apiKey
      in: header
      name: X-API-SECRET