Контракты

Реестр государственных и муниципальных контрактов за 2007-2011 годы виде первичных данных

Характеристики

Код fullcontracts
Набор данных Реестр государственных и муниципальных контрактов за 2007-2011 годы
Объём 1,921,792 записей, 6.8 GB
Поля с индексами id, status, form_date, journal_number, journal_date, snd_tofk_code, ppp_code, customer_code, customer_inn, customer_kpp, public_formation, budget_code, off_budget_type, reg_tofk_code, contract_date, contract_end_date, placement_type, reason_date, result_date, currency_code, change_number, change_date, chief_date, executor_date, execution_type, execution_date, cancel_date, actual_payment, notice_date, izm_type, dol_ruk_fk, changes.change_number, changes.id, changes.form_date, goods.item_number, goods.okp_code, goods.okei_measure, goods.price, goods.count, goods.total_amount, cinfo.line_type, cinfo.fkr_code, cinfo.csr_code, cinfo.kvr_code, cinfo.ekr_code, cinfo.by_year.year, suppliers.item_number, suppliers.oksm_code, suppliers.inn, suppliers.kpp, suppliers.status, suppliers.phone,
Дата последнего обновления

Доступ

Ключ передается в запросе через параметр apikey, ?apikey=МОЙ_КЛЮЧ_API

Общедоступное API (требуется ключ доступа)

Пример кода (Python3)

import requests
import json

HOSTNAME = "api.crftr.net"
APIKEY = 'Укажите ключ для доступа к API'
query = {"id": "Укажите значение для фильтра"}

result = requests.get(
    "https://%s/rawapi/v3/reestrgk/fullcontracts?apikey=%s&where=%s"
    % (HOSTNAME, APIKEY, str(query).replace("'", '"'))
).json()

if "_meta" in result.keys() and result["_meta"]["total"] > 0:
    print(json.dumps(result["_items"][0], indent=4, ensure_ascii=False))