Skip to main content
When authenticating a request, you should send a Cookie header instead of an Authorization header.

Authentication & Headers

Our platform is built using multiple microservices. Each request must include the following two headers:
  • Cookie – Authentication token
  • x-api-key – Shared API key (provided below)

Required Headers

Cookie: accessToken=<access-token>
x-api-key: A1MU5BKmf80ydrr797JU6j288D7w4SV8tqHX9spf
Requests missing either of these headers will be rejected.

Rate Limits

You can send up to 20 requests per second.

Public Services

  • Core: https://api.pingmee.co.il
  • AI: https://ai.pingmee.co.il
  • Business: https://business.pingmee.co.il
  • Campaigns: https://campaigns.pingmee.co.il
  • Workflows: https://workflows.pingmee.co.il

Example Headers Usage

{
  "headers": {
    "Cookie": "accessToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c5........",
    "x-api-key": "A1MU5BKmf80ydrr797JU6j288D7w4SV8tqHX9spf"
  }
}