API
Chirpier provides multiple ways to send data to our platform:
- Official SDKs for popular programming languages
- API over HTTPS for direct integration
Direct API
It’s also possible to send data to Chirpier using our API, using our events API.
Construct your on API request to
- The Chirpier events API
https://{region}.chirpier.co/v1.0/events
- Using the
Authorization
header with your API key as the Bearer token - Your event object in JSON format with the following fields:
group_id
(UUID): The unique monitoring group identifierstream_name
(str): A unique stream name as the measurement namevalue
(float): Numeric value to record as the measurement value
curl -X POST https://{region}.chirpier.co/v1.0/events \\
-H "Authorization: Bearer ${token}" \\
-H "Content-Type: application/json" \\
-d '[{
"group_id": "${groupId}",
"stream_name": "My measurement",
"value": 15.30
}]'`
Regional support
Our APIs support the following regions:
us-west
(Oregon)eu-west
(Belgium)asia-southeast
(Singapore)
Integration token
You can find your integration token in the Integration page.
Last updated on