HumanMirror Oracle API

Structured analysis of text, JSON records and numeric series (data quality, trends, anomalies, recommendations). Bearer hm_oracle_* key; one credit per successful analysis; 100 credits for 4.99 EUR via Stripe. Also exposed as a remote MCP server (fr.humanmirror/oracle) and an ai-plugin manifest.

Operations 2

GET /api/oracle Informations publiques ou solde de crédits si authentifié #
POST /api/oracle/analyze Analyser des données avec HumanMirror Oracle #

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/oracle"
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

humanmirror-fr-oracle-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: HumanMirror Oracle API
  version: '2026-08-30'
  description: API d’analyse structurée conçue pour les applications et agents IA. Un appel d’analyse réussi consomme 1 crédit.
servers:
- url: https://humanmirror.fr
paths:
  /api/oracle:
    get:
      operationId: getOracleStatus
      summary: Informations publiques ou solde de crédits si authentifié
      security:
      - {}
      - ApiKeyBearer: []
      responses:
        '200':
          description: Service disponible
        '401':
          $ref: '#/components/responses/Unauthorized'
  /api/oracle/analyze:
    post:
      operationId: analyzeWithHumanMirrorOracle
      summary: Analyser des données avec HumanMirror Oracle
      security:
      - ApiKeyBearer: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                input: {}
                objective:
                  type: string
                context:
                  type: string
              required:
              - input
              additionalProperties: false
      responses:
        '200':
          description: Analyse réussie
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AnalyzeSuccess'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '402':
          $ref: '#/components/responses/PaymentRequired'
        '413':
          description: Entrée trop volumineuse
        '429':
          description: Limite anti-abus atteinte
        '503':
          description: Service temporairement indisponible
components:
  securitySchemes:
    ApiKeyBearer:
      type: http
      scheme: bearer
      bearerFormat: hm_oracle_…
  schemas:
    AnalyzeSuccess:
      type: object
      required:
      - ok
      - version
      - request_id
      - result
      - usage
      properties:
        ok:
          const: true
        version:
          type: string
        request_id:
          type: string
        result:
          type: object
        usage:
          type: object
          properties:
            credits_used:
              type: integer
            credits_remaining:
              type: integer
          required:
          - credits_used
          - credits_remaining
    Error:
      type: object
      required:
      - ok
      - version
      - error
      properties:
        ok:
          const: false
        version:
          type: string
        request_id:
          type:
          - string
          - 'null'
        error:
          type: object
          required:
          - code
          - message
          properties:
            code:
              type: string
            message:
              type: string
            details: {}
  responses:
    BadRequest:
      description: Requête invalide
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Unauthorized:
      description: Clé API invalide
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    PaymentRequired:
      description: Crédits insuffisants
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'