Skip to main content

Quickstart

Follow these steps to make your first request to the Mindo API.
1

Get your API Key

Log in to the Mindo Dashboard and generate an API Key from the settings section.Your API Key will have the following format:
mindo_xxxxxxxxxxxxxxxxxxxxxxxx
Store your API Key in a safe place. Do not share it or include it in client-side code.
2

Make your first request

Use the following command to retrieve your WhatsApp Business accounts:
curl -X GET https://api.mindosoftware.com/api/v1/business-accounts/ \
  -H "X-API-Key: mindo_xxxxxxxxxxxxxxxxxxxxxxxx"
3

Explore the response

The API will return your company information, WhatsApp phone numbers, and available templates:
{
  "companyName": "Mi Empresa SRL",
  "apiKeyName": "Production API Key",
  "businessAccounts": [
    {
      "businessAccountId": 1,
      "businessName": "Mi Empresa WhatsApp Business",
      "phoneNumbers": [...],
      "templates": [...]
    }
  ]
}
Check the full endpoint reference to see all available fields.

Next steps

Authentication

Learn the details of the authentication system.

Business accounts

Explore the business accounts endpoint in detail.