Skip to content

Authentication

The Sendme API uses API Key-based authentication to protect all endpoints.

Include your API key in the api-key header of each request.

GET /api/contacts
Host: app.sendme123.com
api-key: your-api-key-here
Content-Type: application/json

You can also use a JWT Bearer token in the authorization header.

GET /api/contacts
Host: app.sendme123.com
Authorization: Bearer your-jwt-token-here
Content-Type: application/json

To obtain your API Key:

  1. Sign up at https://app.sendme123.com
  2. Create your account and verify your email
  3. Access the admin panel
  4. Go to the “Settings” or “API Keys” section
  5. Generate your personal API Key
CodeDescription
401Missing or invalid API Key
403Valid API Key but insufficient permissions
429Request limit exceeded
Ventana de terminal
curl -X GET "https://app.sendme123.com/api/contacts" \
-H "api-key: your-api-key-here" \
-H "Content-Type: application/json"