API Docs

Postman

Intent Prediction
HTTP Method POST
API URL https://positiveintent.ai/Api/V1/get-intent-data
Response format JSON

Request Parameters

Parameters Value Description
Authorization Your API key Pass API key in header
text Your message Pass the text as key in body and as a value you will pass message to detect

Example response

                            {
                                "result": {
                                    "Text": "i am interested",
                                    "Intent": "interested_general",
                                    "IntentDetails": {
                                        "interested_general": 0.9824,
                                        "neutral": 0.0176,
                                        "opt_out": 0.0
                                    }
                                },
                                "credits": "9999"
                            }
                        
Get Credits Info
HTTP Method POST
API URL https://positiveintent.ai/Api/V1/get-credits-info
Response format JSON

Request Parameters

Parameters Value Description
Authorization Your API key Pass API key in header

Example response

                            {
                                "credits": "9999"                                  
                            }