Кассовое исполнение по расходам на межбюджетные трансферты
Информация о кассовом исполнении по расходам на предоставление межбюджетных трансфертов из бюджетов субъектов Российской Федерации, местных бюджетов
Характеристики
Код | cashexecexpenmbt |
Набор данных | Кассовое исполнение по расходам на межбюджетные трансферты |
Объём | 1,321,441 записей, 5.4 GB |
Поля с индексами | okeicode, performed, performedrub, informationset.coderpg, informationset.codesubrpg, informationset.infnumber, informationset.ebinfnumber, informationset.infmethod, informationset.formdatetime, informationset.appdatetime, informationset.reportdate, informationset.codereestr, informationset.inn, informationset.kpp, informationset.budgetcycle, informationset.codeclassification, informationset.signoneyear, informationset.presenceadsence, informationset.adsencereason, informationset.mrk_asfk, budgetmeanstype.name, purgoallist.goalcode, budget.budgetcode, list.startdate, list.enddate, list.type.name, kvsr.code, kvsr.id_code, kvsr.codereestr, rzpr.code, rzpr.id_code, kcsr.code, kcsr.id_code, kvr.code, kvr.id_code, ppo.code, expenses.codegrbs, expenses.codereestr, expenses.rzpr, expenses.kcsr, expenses.kvr, expenses.id_code |
Дата последнего обновления | 2021-06-14 07:07:12.928000 |
Доступ
Ключ передается в запросе через параметр apikey, ?apikey=МОЙ_КЛЮЧ_API
Пример кода (Python3)
import requests import json HOSTNAME = "api.crftr.net" APIKEY = 'Укажите ключ для доступа к API' query = {"okeicode": "Укажите значение для фильтра"} result = requests.get( "https://%s/rawapi/v3/budgetgovru/cashexecexpenmbt?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))