Create a Blooio API key, assign its sender channels, and authenticate requests to the v4 API.
Use an organization API key to authenticate Blooio v4 API requests. Treat the key like a password and never expose it in browser code or public repositories.
Send the key in the Authorization header as a Bearer token. The current API base URL is https://api.blooio.com/v4.
curl 'https://api.blooio.com/v4/me' \
--header 'Authorization: Bearer YOUR_API_KEY'Check which organization the API key can access.Use POST /v4/messages with typed content. The dry_run option validates the request and selects a sender without sending a message.
curl --request POST 'https://api.blooio.com/v4/messages' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Idempotency-Key: help-center-test-001' \
--data '{"to":"+15551234567","content":{"type":"text","text":"Hello from Blooio v4"},"dry_run":true}'