Developer Platform
REST API Documentation.
Build powerful outreach and lead generation workflows with our enterprise-grade API infrastructure.
Getting Started
The Digital agency oman API is organized around REST. Our API has predictable resource-oriented URLs, accepts form-encoded request bodies, returns JSON-encoded responses, and uses standard HTTP response codes, authentication, and verbs.
Base API URL
https://jimctech.cloud/apiAuthentication
Authenticate your requests by including your secret API key in the request headers. You can manage your API keys in the dashboard under Settings.
Authorization:Bearer YOUR_API_KEY
POST
/api/search
Extract lead data based on specific business niches and geographical locations.
Request Body
{
"keyword": "Dentists",
"location": "Muscat",
"userId": "user_123"
}POST
/api/campaigns
Launch sequences and automated outreach campaigns to a list of extracted leads.
Request Body
{
"name": "Muscat Real Estate Blitz",
"subject": "Hello from Muscat",
"content": "Hi there...",
"userId": "user_123",
"leadIds": ["lead_1", "lead_2"],
"channel": "EMAIL"
}