Skip to main content
GET /channels Example Request (cURL)
curl -X GET "https://api.visitoai.com/api/v1.0/channels" \
  -H "Authorization: Bearer YOUR_API_KEY_HERE"
Example Response
{
  "data": {
    "facebook": [],
    "whatsapp": [
      {
        "phoneNumberId": "123456",
        "id": "123456",
        "phoneNumber": "+123 456 789 000",
        "active": true
      }
    ],
    "instagram": []
  }
}