Quickstart

This guide will help you get started with Oblic. We'll walk you through creating an account, importing contacts, and launching your first campaign.

Create Your Account

Sign up for Oblic at web.oblic.app. You can sign up using:

  • Google Account (recommended)
  • GitHub Account
  • Email and Password

After signing up, you'll be prompted to create your first Organization. Your organization is the workspace where you'll manage all your campaigns, contacts, and team members.

Import Your Contacts

Before sending campaigns, you need an audience.

  1. Navigate to Contacts in the dashboard
  2. Click Import Contacts
  3. Upload a CSV or Excel file
  4. Use our smart column mapping to match your data fields
  5. Review and complete the import

Create Your First Campaign

Now you're ready to create a campaign:

  1. Go to Campaigns and click Create Campaign
  2. Choose your channel: Email or WhatsApp
  3. Select a template or build from scratch
  4. Choose your audience (the contact list you imported)
  5. Schedule or send immediately

What's Next?

# cURL is most likely already installed on your machine
curl --version

Making your first API request

After picking your preferred client, you are ready to make your first call to the Oblic API. Below, you can see how to send a GET request to the Conversations endpoint to get a list of all your conversations. In the cURL example, results are limited to ten conversations, the default page length for each client.

GET
/v1/conversations
curl -G https://api.oblic.app/external/conversations \
  -H "Authorization: Bearer {token}" \
  -d limit=10

What's next?

Great, you're now set up with an API client and have made your first request to the API. Here are a few links that might be handy as you venture further into the Oblic API:

Was this page helpful?