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_ 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