Retrieve all labels from your WhatsApp Business account.
curl --request GET \
--url https://api.example.com/label/findLabels/my-instance \
--header 'apikey: YOUR_API_KEY'
{
"labels": [
{
"id": "1",
"name": "New Customer",
"color": "#00A0DC",
"predefinedId": "1"
},
{
"id": "2",
"name": "Pending Payment",
"color": "#F39C12",
"predefinedId": "2"
},
{
"id": "custom_123",
"name": "VIP Client",
"color": "#9B59B6",
"predefinedId": null
}
]
}
Documentation Index
Fetch the complete documentation index at: https://mintlify.com/EvolutionAPI/evolution-api/llms.txt
Use this file to discover all available pages before exploring further.
apikey header.
curl --request GET \
--url https://api.example.com/label/findLabels/my-instance \
--header 'apikey: YOUR_API_KEY'
{
"labels": [
{
"id": "1",
"name": "New Customer",
"color": "#00A0DC",
"predefinedId": "1"
},
{
"id": "2",
"name": "Pending Payment",
"color": "#F39C12",
"predefinedId": "2"
},
{
"id": "custom_123",
"name": "VIP Client",
"color": "#9B59B6",
"predefinedId": null
}
]
}
#00A0DC#F39C12#9B59B6#16A085#E74C3C#95A5A6curl --request GET \
--url https://api.example.com/label/findLabels/my-instance \
--header 'apikey: YOUR_API_KEY'
{
"labels": [
{
"id": "1",
"name": "New Customer",
"color": "#00A0DC",
"predefinedId": "1"
},
{
"id": "2",
"name": "Pending Payment",
"color": "#F39C12",
"predefinedId": "2"
},
{
"id": "custom_123",
"name": "VIP Client",
"color": "#9B59B6",
"predefinedId": null
}
]
}