Tadeus API Results API

The results API from Tadeus API — 4 operation(s) for results.

Operations 4

GET /results/ #
GET /results/export/csv/ #
GET /results/export/json/ #
GET /results/{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-results-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-results-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Integration Results API
  description: API Integration endpoints documentation
  version: v1
servers:
- url: https://app.tadeus.net/api/integration/v1
security:
- api_key: []
- api_secret: []
tags:
- name: results
paths:
  /results/:
    parameters: []
    get:
      operationId: results_list
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Result'
      tags:
      - results
  /results/export/csv/:
    parameters: []
    get:
      operationId: results_export_export_csv
      description: 'Download all results as a CSV file, with output_json fields flattened as columns.

        GET /api/integration/v1/results/export/csv/'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Result'
      tags:
      - results
  /results/export/json/:
    parameters: []
    get:
      operationId: results_export_export_json
      description: 'Download all results as a JSON file.

        GET /api/integration/v1/results/export/json/'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Result'
      tags:
      - results
  /results/{uuid}/:
    parameters:
    - name: uuid
      in: path
      required: true
      schema:
        type: string
    get:
      operationId: results_read
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Result'
      tags:
      - results
components:
  schemas:
    Result:
      type: object
      properties:
        id:
          title: ID
          type: integer
          readOnly: true
        session_uuid:
          title: Session uuid
          type: string
          format: uuid
          readOnly: true
        campaign_uuid:
          title: Campaign uuid
          type: string
          format: uuid
          readOnly: true
        short_summary:
          title: Short summary
          description: Short summary text output
          type:
          - string
          - 'null'
        summary_text:
          title: Summary text
          description: Summary text output
          type:
          - string
          - 'null'
        output_json:
          title: Output json
          type: object
        confidence:
          title: Confidence
          description: Optional confidence score 0..1
          type:
          - number
          - 'null'
        relevance:
          title: Relevance
          description: Optional relevance score 0..1
          type:
          - number
          - 'null'
        sentiment:
          title: Sentiment
          description: Sentiment score -1.0..1.0
          type:
          - number
          - 'null'
        engagement:
          title: Engagement
          description: Engagement score 0.0..1.0
          type:
          - number
          - 'null'
        validated:
          title: Validated
          type: boolean
        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