Projects built with DataRobot

Embed cutting edge predictive models into your applications simply by using three lines of code within the tools and coding languages you already know.

Get Started
Predict Marketing Activity
Query
Response
                                          $ curl -X POST "https://PREDICTION_SERVER/predApi/v1.0/deployments/DEPLOYMENT_ID/predictions" \
-H "Authorization: Bearer API_KEY" \
-H "DataRobot-Key: DATAROBOT_KEY" \
-H "Content-Type: application/json" \
--data-raw '[{
	"your": "data",
	"to": "predict"
}]'
                                        
                                            {
    "data": [
        {
            "predictionValues": [
                {
                    "value": 0.9843449417,
                    "label": 1.0
                },
                {
                    "value": 0.0156550583,
                    "label": 0.0
                }
            ],
            "predictionThreshold": 0.5,
            "prediction": 1.0,
            "rowId": 0
        }
    ]
}