Resultid Insight endpoints API

The Insight endpoints API from Resultid — 1 operation(s) for insight endpoints.

Operations 1

GET /get_insight_last_result Do Get Insight Last Result #

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/resultid-insight-endpoints-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 email required.

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

OpenAPI Specification

resultid-insight-endpoints-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Resultid Insight endpoints API
  version: 2.5.0
  description: Read API for Resultid campaign, insight, tracker and theme data. Transcribed from Resultid's own published API reference at https://docs.resultid.com/22_api_spec_test/, which renders the FastAPI-generated OpenAPI schema. Authentication is an X-API-Key request header on every operation.
  x-source-info-title: Custom title
  x-source-info-description: Here's a longer description of the custom OpenAPI schema
tags:
- name: Insight endpoints
paths:
  /get_insight_last_result:
    get:
      tags:
      - Insight endpoints
      summary: Do Get Insight Last Result
      operationId: do_get_insight_last_result_get_insight_last_result_get
      parameters:
      - name: X-API-Key
        in: header
        required: true
        schema:
          type: string
          title: X-Api-Key
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Body_do_get_insight_last_result_get_insight_last_result_get'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    Body_do_get_insight_last_result_get_insight_last_result_get:
      properties:
        insight_uuid:
          type: string
          title: Insight Uuid
      type: object
      required:
      - insight_uuid
      title: Body_do_get_insight_last_result_get_insight_last_result_get
    ValidationError:
      properties:
        loc:
          items: {}
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
x-derivation:
  method: derived
  source: https://docs.resultid.com/22_api_spec_test/
  derived: '2026-08-14'
  note: 'Resultid publishes its OpenAPI only as rendered HTML (mkdocs-material + neoteroi OpenAPI plugin). The raw JSON is not served: https://docs.resultid.com/openapi.json returns 403. Every path, method, operationId, parameter, request-body schema, response code and component schema below is transcribed verbatim from that rendering. operationIds are recovered from the FastAPI Body_<operationId> component names shown on the page. Nothing has been invented. Two fields are NOT stated by the rendering and are recorded here as such: the OpenAPI version (3.1.0 assumed from the FastAPI toolchain) and servers[] (Resultid publishes no API base URL anywhere on docs.resultid.com or resultid.ai).'
  not_published:
  - servers
  - openapi version string
  - response 200 schemas (rendered empty)
  - operation descriptions
  - parameter descriptions