Login
Register
Complete Your Profile
Change Password
Request a Password Reset
Download Documents
Download Documents
Get Help to Participate in This Tender
Change Password
For better security, update the account password.
Overview:
The TendersOnTime API provides access to tender information for a given date. Users can retrieve tenders posted on a specific date, with pagination support for navigating through the results.
Base URL: https://tmproject.tendersontime.org/tmpApi/tender-pull-json-tot.php
Authentication:
username (required): Your API username.
key (required): Your API key for authentication.
Endpoints:
Retrieve tenders posted on a specific date.
| Request Fields | Field type | Field Description |
|---|---|---|
| username | string | required, Your API username. |
| key | string | required, Your API key for authentication. |
| date | string | required, Date of posting in YYYY-MM-DD format. |
| page | integer | optional, Page number for pagination (default: 1). |
| perpage | integer | optional, Limit of items per page (default: 10). |
{
"status": "success",
"message": "tender success",
"posting_date": "YYYY-MM-DD",
"page_no": 1,
"pagination": {
"total_items": 100,
"per_page": 10,
"first_page": 1,
"last_page": 10
},
"data": [
{
// Tender data object
}
],
"last_id": "last_item_id",
"time_stamp": "YYYY-MM-DD HH:MM:SS"
}
{
"status": "failed",
"message": "Error Message",
"data": []
}
Sample Request:
Sample Response:
{
"status": "success",
"message": "tender success",
"posting_date": "2024-01-18",
"page_no": 1,
"pagination": {
"total_items": 20,
"per_page": 5,
"first_page": 1,
"last_page": 4
},
"data": [
{
// Tender data object
},
{
// Tender data object
},
...
],
"last_id": "last_item_id",
"time_stamp": "2024-02-19 10:30:00"
}
Notes: