GET
/
chatbot-templates
curl --request GET \
  --url https://api.chatling.ai/v2/chatbot-templates \
  --header 'Authorization: Bearer <token>'
{
    "status": "success",
    "data": {
        "pages": {
            "current_page": 1,
            "last_page": 1,
            "per_page": 25
        },
        "templates": [
            {
                "id": 1,
                "name": "AI Chatbot",
                "description": "Uses AI to automatically respond to customers by leveraging your data, such as your website content, documents, and more."
            },
            {
                "id": 2,
                "name": "Basic Lead Generation",
                "description": "Engage with prospective leads and capture their contact information."
            }
        ]
    }
}

Request parameters

Query

page
integer
default: "1"

The page number for pagination.

status
string

The status of the request. Will be success if the request was successful, otherwise error.

data
object
{
    "status": "success",
    "data": {
        "pages": {
            "current_page": 1,
            "last_page": 1,
            "per_page": 25
        },
        "templates": [
            {
                "id": 1,
                "name": "AI Chatbot",
                "description": "Uses AI to automatically respond to customers by leveraging your data, such as your website content, documents, and more."
            },
            {
                "id": 2,
                "name": "Basic Lead Generation",
                "description": "Engage with prospective leads and capture their contact information."
            }
        ]
    }
}