Using our API you can post jobs directly from your application or script to our platform.
End Point
All API requests should be sent to the following URL:
POST https://bdjobsite.com/api/v1/create_job.php
Authentication
One with each requestX-API-KEYHeaders must be sent. Contact our admin to get your unique API Key.
Content-Type: application/json
X-API-KEY: Your_Unique_API_Key
Request Body (JSON Format)
You need to send job description in JSON format. Below is an example:
{
"title": "Subscribe to my YouTube channel",
"category": "YouTube_Subscribe",
"job_link": "https://www.youtube.com/channel/
your_channel_id",
"reward_amount": 1.50,
"quantity": 100,
"proof_requirement": "The channel subscribes to a
Give screenshot.",
"description": "This is a gaming channel.",
"duration_seconds": 0,
"start_count": 1250
}
Required Fields: title,category,job_link,reward_amount,quantity,proof_requirement
Response
If successful (Success Response):
{
"success": true,
"message": "Job created successfully.",
"data": {
"job_id": 152,
"cost_deducted": 150
}
}
In case of failure (Error Response):
{
"success": false,
"message": "Insufficient balance to
create this job."
}