Skip to main content

Intro

Let’s explore IntelSend Communication API in less than 5 minutes πŸš€


Getting Started​

Get started by choosing a communication API method.
Or jump right in and try out the API with IntelSend.

What You'll Need
  • An API Key to authenticate requests
  • Make sure your API key is securely stored and never exposed publicly

Choose an API Method​

IntelSend offers two ways to send communications:

  • πŸ“§ Single Email API β†’ Send one email at a time with custom content, scheduling, and tracking.
  • πŸ“¦ Bulk Email API β†’ Send large volumes of emails to multiple recipients with similar features.

Single Email API Example​

Send a single email using the Single Email API. You can customize:

  • Subject
  • Plain text body
  • HTML body
  • Scheduling
  • Tracking with a unique uid
curl -X POST https://intelsend.com/api/v1/send/single_email \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"to": "recipient@example.com",
"from": "sender@example.com",
"subject": "Your Email Subject",
"bodyText": "Hello, this is the email body in text format.",
"bodyHtml": "<strong>Hello</strong>, this is the email body in HTML.",
"uid": "unique-id-123",
"programId": 12345
}'