Skip to content

Get API Key

The Multitender API provides access to government procurement and contract data. To use the API, you need to obtain an API key by submitting a request through our feedback form.

Learn more about Multitender services and solutions at multitender.ru.

The Multitender API requires an API key to be included in all GET requests as a query parameter. This key authenticates your requests and grants access to the API endpoints.

Include your API key in the query string of your GET requests:

Terminal window
GET https://api-docs.multitender.ru/endpoint?api_key=YOUR_API_KEY

The Multitender API can return data in two formats:

  • XML - Extensible Markup Language format
  • JSON - JavaScript Object Notation format

You can specify your preferred format in the request, or the API will return the default format. Both formats contain the same data, just structured differently.

{
"status": "success",
"data": {
"contracts": [...],
"total": 100
}
}
<?xml version="1.0" encoding="UTF-8"?>
<response>
<status>success</status>
<data>
<contracts>...</contracts>
<total>100</total>
</data>
</response>

To obtain an API key for the Multitender API, please fill out the feedback form below. Our specialist will contact you to provide your API key and assist with integration.

Once you receive your API key, you can start making requests to the Multitender API. Here’s a basic example:

Terminal window
# Example API request with API key
curl "https://api-docs.multitender.ru/v1/contracts?api_key=YOUR_API_KEY&format=json"
  • api_key (required) - Your unique API key
  • format (optional) - Response format: json or xml (default: json)
Multitender.ru