Quick Start Guide

Get up and running with SuperSend API in under 5 minutes. This guide will walk you through making your first API request.

Prerequisites

  • A SuperSend account (sign up at supersend.io)
  • Your API key (found on the Admin Page)
  • Your TeamId and CampaignId (required for multi-tenant operations)

Making Your First Request

Let's start by creating a contact. Here's a simple example using cURL:

bash
curl -X POST https://api.supersend.io/v1/auto/contact \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "contacts": [
      {
        "email": "john.doe@example.com",
        "first_name": "John",
        "last_name": "Doe",
        "tags": []
      }
    ],
    "TeamId": "your-team-id",
    "CampaignId": "your-campaign-id"
  }'

Response

A successful response will return the created contact:

json
{
  "success": true,
  "data": {
    "contact": {
      "id": "contact-123",
      "email": "john.doe@example.com",
      "first_name": "John",
      "last_name": "Doe",
      "created_at": "2025-01-27T12:00:00Z"
    }
  }
}

Next Steps

Ready to dive deeper?