Developer Resources

WapiKit provides comprehensive API access and developer tools to help you integrate WhatsApp marketing and customer engagement capabilities into your applications, websites, and business systems.

API Access

WapiKit offers a RESTful API that gives you programmatic access to all platform features. With the API, you can:

  • Manage contacts and lists
  • Create and send campaigns
  • Handle conversations
  • Access analytics data
  • Configure organization settings
  • Leverage AI capabilities

Getting Your API Token

To use the WapiKit API, you’ll need to generate an API token:

  1. Log in to your WapiKit dashboard
  2. Navigate to Settings > API Access
  3. Click “Generate New Token”
  4. Provide a name for your token (e.g., “Development”, “Production”)
  5. Select the appropriate permissions for this token
  6. Click “Create Token”
  7. Copy and securely store your token - it will only be shown once

Using Your API Token

Include your API token in the x-access-token header with each API request:

curl -X GET "https://api.wapikit.com/v1/contacts" \
  -H "x-access-token: your_api_token" \
  -H "Content-Type: application/json"

API Token Security

Your API token provides access to your WapiKit account, so it’s important to keep it secure:

  • Never include your token in client-side code
  • Don’t commit tokens to version control
  • Use environment variables to store tokens
  • Implement proper access controls
  • Rotate tokens periodically
  • Revoke tokens that are no longer needed

API Reference

For detailed information about available endpoints, request formats, and response structures, refer to our API Reference.

The API Reference includes:

SDKs and Libraries

WapiKit provides official SDKs to simplify API integration:

JavaScript/TypeScript SDK

Our JavaScript SDK is the most comprehensive client library for WapiKit:

import { WapiClient } from '@wapikit/wapi.js';

const client = new WapiClient({
  apiKey: 'your_api_token'
});

// Send a message
const response = await client.messages.send({
  to: '1234567890',
  text: 'Hello from WapiKit!'
});

Other SDKs

We also provide SDKs for other popular languages:

Webhooks

WapiKit can send real-time notifications to your application via webhooks:

  1. Go to Settings > Webhooks
  2. Click “Add Webhook”
  3. Enter your endpoint URL
  4. Select the events you want to receive
  5. Set a secret key for signature verification
  6. Click “Create Webhook”

Learn more about configuring and handling webhooks in our API documentation.

Rate Limiting

The WapiKit API implements rate limiting to ensure fair usage. Different subscription tiers have different rate limits:

Subscription TierRate Limit (requests per minute)
Free60
Pro300
Scale1,000
EnterpriseCustom limits

For more information, see our Rate Limiting Guide.

Open Source Components

WapiKit provides several open-source components that you can use and contribute to:

Developer Community

Join our developer community to get help, share ideas, and collaborate:

Example Projects

We provide example projects to help you get started:

API Changelog

Stay updated on API changes and new features:

Getting Help

If you need assistance with API integration or development: