Quickstart

This guide will get you set up and ready to use the Batchmates API. We'll cover authentication setup and how to make your first API request.

Choose Your Authentication Method

Batchmates supports two authentication methods:

  • Session-based (Web) - For browser-based admin interfaces
  • JWT (Mobile) - For mobile applications and stateless clients

Making your first API request

After authentication, you're ready to make your first call. Below is how to fetch active campaigns.

GET
/v1/campaigns
curl -G https://batchmates-v2.revlv.com/api/v1//campaigns \
  -H "Authorization: Bearer {token}" \
  -d status=active

What's next?

You're now set up with API credentials and have made your first request. Here are helpful next steps:

Was this page helpful?