Quickstart

This guide will get you all set up and ready to use the Readconv API. We’ll walk through how to authenticate and make your first API request using either cURL or JavaScript.

Making your first API request

All Readconv API requests require a Bearer token. Below, you can see how to send a GET request to the metrics endpoint to retrieve the revenue metric.

GET
/api/metrics/revenue
curl -G http://localhost:3000/api/metrics/revenue \
  -H "Authorization: Bearer {token}" \
  -d period=7d

What's next?

You're now set up to authenticate and query data from the Readconv API. Here are some useful next steps:

Was this page helpful?