Whippy website screenshot

Whippy

Whippy is an AI-powered customer communication platform unifying SMS, email, voice, and fax into a single omnichannel inbox. Its public REST API (X-WHIPPY-KEY header) lets developers send messages, manage contacts and conversations, run campaigns and automated sequences, configure channels, and subscribe to webhooks.

7 APIs 0 Features
CommunicationMessagingSMSEmailVoiceAICampaignsSequences

APIs

Whippy Messaging API

Send SMS/MMS, email, and fax messages from an organization channel to a contact, with attachments, opt-in handling, conversation status, and scheduled delivery.

Whippy Contacts API

Create, read, update, delete, search, and upsert contacts, manage per-channel communication preferences (opt in / opt out), and list a contact's sequences.

Whippy Conversations API

List, show, search, and update conversations across phone, email, and fax channels, and list or search the messages within them.

Whippy Campaigns API

Send SMS campaigns and list, show, and inspect campaign-level analytics (sent, responses, link clicks, unsubscribes) and campaign contacts.

Whippy Sequences API

List and show automated multi-step sequences, add or remove contacts, and inspect sequence runs for drip and follow-up automation.

Whippy Channels API

List and show channels (phone, email, fax) with opening hours, AI-agent configuration, and automatic response settings, and manage channel membership.

Whippy Webhooks API

Subscribe developer endpoints to resource events (message.created, campaign.updated, etc.) with HMAC-SHA256 signed payloads, and push first-party custom events into Whippy indiv...

Collections

Pricing Plans

Whippy Plans Pricing

6 plans

PLANS

Rate Limits

Whippy Rate Limits

4 limits

RATE LIMITS

FinOps

Whippy Finops

FINOPS

Resources

🔗
LinkedIn
LinkedIn
🔗
Website
Website
🔗
Documentation
Documentation
🔗
Plans
Plans
🔗
RateLimits
RateLimits
🔗
FinOps
FinOps

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Whippy Public API
  version: '1.0'
request:
  auth:
    type: apikey
    key: X-WHIPPY-KEY
    value: '{{whippyApiKey}}'
    in: header
items:
- info:
    name: Messaging
    type: folder
  items:
  - info:
      name: Send an SMS / MMS
      type: http
    http:
      method: POST
      url: https://api.whippy.co/v1/messaging/sms
      body:
        type: json
        data: '{"to":"+15555550123","from":"+15555550100","body":"Hello from Whippy"}'
    docs: Send a text (or MMS) message from a channel to a destination number.
  - info:
      name: Send an Email
      type: http
    http:
      method: POST
      url: https://api.whippy.co/v1/messaging/email
      body:
        type: json
        data: '{"to":"jane@example.com","from":"support@yourorg.com","subject":"Hello","body":"Hello from Whippy"}'
    docs: Send an email from a channel to a destination address.
  - info:
      name: Send a Fax
      type: http
    http:
      method: POST
      url: https://api.whippy.co/v1/messaging/fax
      body:
        type: json
        data: '{"to":"+15555550123","from":"+15555550100","attachments":["https://example.com/doc.pdf"]}'
    docs: Send a fax from a fax channel to a destination number.
  - info:
      name: Send an SMS Campaign
      type: http
    http:
      method: POST
      url: https://api.whippy.co/v1/messaging/sms/campaign
      body:
        type: json
        data: '{"from":"+15555550100","title":"Spring Promo","body":"Hi!","contacts":[{"phone":"+15555550123"}]}'
    docs: Create and send a bulk SMS campaign.
- info:
    name: Contacts
    type: folder
  items:
  - info:
      name: List Contacts
      type: http
    http:
      method: GET
      url: https://api.whippy.co/v1/contacts
    docs: List contacts with limit / offset pagination.
  - info:
      name: Create Contact
      type: http
    http:
      method: POST
      url: https://api.whippy.co/v1/contacts
      body:
        type: json
        data: '{"phone":"+15555550123","name":"Jane Doe","email":"jane@example.com"}'
    docs: Create a contact.
  - info:
      name: Show Contact
      type: http
    http:
      method: GET
      url: https://api.whippy.co/v1/contacts/:id
    docs: Retrieve a single contact by UUID.
  - info:
      name: Update Contact
      type: http
    http:
      method: PUT
      url: https://api.whippy.co/v1/contacts/:id
      body:
        type: json
        data: '{"name":"Jane Q. Doe"}'
    docs: Update a contact by UUID.
  - info:
      name: Delete Contact
      type: http
    http:
      method: DELETE
      url: https://api.whippy.co/v1/contacts/:id
    docs: Delete a contact by UUID.
  - info:
      name: Search Contacts
      type: http
    http:
      method: POST
      url: https://api.whippy.co/v1/contacts/search
      body:
        type: json
        data: '{"email":"jane@example.com"}'
    docs: Search contacts by phone, email, name, or external_id.
- info:
    name: Conversations
    type: folder
  items:
  - info:
      name: List Conversations
      type: http
    http:
      method: GET
      url: https://api.whippy.co/v1/conversations
    docs: List conversations with status / type filters and pagination.
  - info:
      name: Show Conversation
      type: http
    http:
      method: GET
      url: https://api.whippy.co/v1/conversations/:id
    docs: Retrieve a single conversation by UUID.
  - info:
      name: List Messages
      type: http
    http:
      method: GET
      url: https://api.whippy.co/v1/conversations/:id/messages
    docs: List the messages within a conversation.
- info:
    name: Campaigns
    type: folder
  items:
  - info:
      name: List Campaigns
      type: http
    http:
      method: GET
      url: https://api.whippy.co/v1/campaigns
    docs: List campaigns with analytics.
  - info:
      name: Show Campaign
      type: http
    http:
      method: GET
      url: https://api.whippy.co/v1/campaigns/:id
    docs: Retrieve a single campaign by UUID.
  - info:
      name: List Campaign Contacts
      type: http
    http:
      method: GET
      url: https://api.whippy.co/v1/campaigns/:id/contacts
    docs: List the contacts in a campaign.
- info:
    name: Sequences
    type: folder
  items:
  - info:
      name: List Sequences
      type: http
    http:
      method: GET
      url: https://api.whippy.co/v1/sequences
    docs: List sequences.
  - info:
      name: Show Sequence
      type: http
    http:
      method: GET
      url: https://api.whippy.co/v1/sequences/:id
    docs: Retrieve a single sequence by UUID.
  - info:
      name: Add Contacts to a Sequence
      type: http
    http:
      method: POST
      url: https://api.whippy.co/v1/sequences/:id/contacts
      body:
        type: json
        data: '{"from":"+15555550100","to":[{"phone":"+15555550123"}]}'
    docs: Add 1-4000 contacts to a sequence, optionally at a specific step.
  - info:
      name: List Sequence Runs
      type: http
    http:
      method: GET
      url: https://api.whippy.co/v1/sequences/runs
    docs: List sequence runs.
- info:
    name: Channels
    type: folder
  items:
  - info:
      name: List Channels
      type: http
    http:
      method: GET
      url: https://api.whippy.co/v1/channels
    docs: List channels with opening hours and AI-agent configuration.
  - info:
      name: Show Channel
      type: http
    http:
      method: GET
      url: https://api.whippy.co/v1/channels/:id
    docs: Retrieve a single channel by UUID.
  - info:
      name: List Channel Users
      type: http
    http:
      method: GET
      url: https://api.whippy.co/v1/channels/:id/users
    docs: List the users with access to a channel.
- info:
    name: Webhooks
    type: folder
  items:
  - info:
      name: Create Custom Event
      type: http
    http:
      method: POST
      url: https://api.whippy.co/v1/custom_events
      body:
        type: json
        data: '{"event":"order.created","external_id":"order_123"}'
    docs: Push a first-party custom event into Whippy.
  - info:
      name: Create Custom Events in Bulk
      type: http
    http:
      method: POST
      url: https://api.whippy.co/v1/custom_events/bulk
      body:
        type: json
        data: '{"events":[{"event":"order.created","external_id":"order_123"}]}'
    docs: Push first-party custom events into Whippy in bulk.