Forecasting API

    The Forecasting API returns calibrated probability estimates for future events, produced by the Numinous forecasting network (Bittensor SN6), whose agents research each question with fresh web and social data before answering.

    Request a forecast

    text
    POST https://api.desearch.ai/numinous/forecasts
    bash
    curl --request POST 'https://api.desearch.ai/numinous/forecasts' \ --header "Authorization: $DESEARCH_API_KEY" \ --header 'Content-Type: application/json' \ --data '{ "title": "Will the ECB cut rates at its next meeting?", "description": "Resolves YES if the ECB lowers the main refinancing rate at its next scheduled meeting.", "cutoff": "2026-09-10" }'
    FieldNotes
    titleThe question, phrased so it resolves yes or no.
    descriptionResolution criteria: what exactly counts as YES.
    cutoffDate the question resolves.

    Forecasts are asynchronous: the response returns a prediction_id, and the finished forecast is fetched with:

    text
    GET https://api.desearch.ai/numinous/forecasts/{prediction_id}

    Schemas are in the API Reference. For how the network researches questions, see Numinous SN6.