Query
Name
Type
Description
Name
Type
Description
Example usage with cURL
curl -X POST https://api.telemetry.sh/query \
-H "Content-Type: application/json" \
-H "Authorization: $API_KEY" \
-d '{
"query": "
SELECT
city,
AVG(price) AS average_price
FROM
uber_rides
GROUP BY
city
LIMIT
10000;
"
}'Using the JavaScript SDK
Last updated