Skip to main content
Documentation

Marqly Documentation

Comprehensive guides, tutorials, and API references to help you build and grow your business.

API Reference

Build custom integrations with our RESTful API. Access comprehensive documentation and code examples for all available endpoints.

REST APIWebhooks
View API Docs

Quick API Example

Create a new lead
curl -X POST https://api.marqly.co.za/v1/leads \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "John Smith",
    "email": "john@example.com",
    "phone": "+27123456789",
    "source": "website",
    "value": 50000
  }'