Skip to content

Authentication

Base URL: https://message.geneline-x.net

Most endpoints require an API key issued by Geneline‑X. Provide one of:

  • Header: X-API-Key: <key>
  • Header: Authorization: Bearer <key>
  • Query: ?api_key=<key>

Unauthenticated: /metrics

If you don’t have an API key yet, request one from your Geneline‑X admin or support.

Terminal window
curl -X POST \
https://message.geneline-x.net/api/v1/message \
-H "Content-Type: application/json" \
-H "X-API-Key: $GENISTUDIO_API_KEY" \
-d '{
"chatbotId": "test101",
"email": "user@example.com",
"message": "Hello, can you help me?"
}'