План-график составления проектов бюджетов субъектов РФ
Характеристики
| Код | pgdraftingbudgets |
| Набор данных | План-график составления проектов бюджетов субъектов РФ |
| Объём | 11,468 записей, 47.3 MB |
| Поля с индексами | targetdate, periodconsiderat, factperiodconsiderat, factgetdate, authorityapprovdoc.code, npasubject.codereestr, npasubject.numbernpa, npasubject.statregnumber, npasubject.stateregdate, npasubject.enddate, npasubject.npakind, npasubject.approvaldate, npasubject.entrydate, npasubject.statusnpa, events.recordnum, executor.code, informationset.infnumber, informationset.ebinfnumber, informationset.formdatetime, informationset.appdatetime, informationset.reportdate, informationset.codereestr, informationset.inn, informationset.kpp, informationset.budgetcycle, informationset.codeclassification, informationset.adsencereason, informationset.noinform, budget.budgetcode |
| Дата последнего обновления | 2021-06-14 07:07:11.815000 |
Доступ
Ключ передается в запросе через параметр apikey, ?apikey=МОЙ_КЛЮЧ_API
Пример кода (Python3)
import requests
import json
HOSTNAME = "api.crftr.net"
APIKEY = 'Укажите ключ для доступа к API'
query = {"targetdate": "Укажите значение для фильтра"}
result = requests.get(
"https://%s/rawapi/v3/budgetgovru/pgdraftingbudgets?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))