Lorem ipsum dolor sit amet. Build custom integrations with Tajo's powerful REST API.
Duis aute irure dolor. Navigate to Settings → API Keys in your Tajo dashboard to generate an API key.
curl https://api.tajo.io/v2/customers \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"{
"data": [
{
"id": "cust_123",
"email": "[email protected]",
"created_at": "2025-01-01T00:00:00Z"
}
],
"meta": {
"total": 100,
"page": 1
}
}All API requests should be made to this base URL
Include your API key in the Authorization header
Sed ut perspiciatis unde. Retrieve a list of all customers.
GET /v2/customers?page=1&limit=20Nemo enim ipsam voluptatem. Create a new customer.
POST /v2/customers
{
"email": "[email protected]",
"first_name": "John",
"last_name": "Doe",
"tags": ["vip", "newsletter"]
}Neque porro quisquam est. Retrieve all campaigns.
GET /v2/campaigns?status=activeUt enim ad minima veniam. Track custom events for customers.
POST /v2/events
{
"customer_id": "cust_123",
"event_name": "product_viewed",
"properties": {
"product_id": "prod_456",
"price": 49.99
}
}Quis autem vel eum iure. Configure webhooks to receive real-time notifications about events in your Tajo account.
customer.createdcustomer.updatedorder.createdcampaign.sentemail.openedemail.clicked{
"event": "customer.created",
"timestamp": "2025-01-15T10:30:00Z",
"data": {
"id": "cust_789",
"email": "[email protected]",
"created_at": "2025-01-15T10:30:00Z"
}
}At vero eos et accusamus. Our developer support team is here to help you integrate Tajo into your application.