Fetch Bot Info API

Use this endpoint to retrieve bot metadata without sending a request body.
Pass all required values as query parameters or headers.

Query Params
string

Enter the bot type you want to filter by. For example: Promotional.

Headers
string
required

Enter your RCS API key for authentication.

string
required

Must be set to application/json.

string

Optional. Enter the unique bot identifier from the RCS Dashboard.
If not provided, the system uses the default bot configured in your panel.

Responses
200

Success Response — Bot details found

{
    "status": "success",
    "message": "Data fetched successfully",
    "client_id": <client_id>,
    "data": {
        "bot_details": [
            {
                "botId": "<bot_id>",
                "bot_type": "Promotional",
                "bot_name": "Netcore Cloud promotional"
            }
        ]
    }
}

Success Response — No data found

{
  "status": "success",
  "message": "No data found",
  "client_id": <client_id>,
  "data": {
    "bots": []
  }
}
400

Invalid API Key

{
   "errors":[
      {
         "message":"Authorization Failed, invalid token",
         "field":"api_key"
      }
   ]
}

Invalid Content Type

{
   "errors":[
      {
         "message":"ContentType not valid",
         "field":"ContentType"
      }
   ]
}
Language
Credentials
Bearer
JWT
Response
Click Try It! to start a request and see the response here!