Отчет о показателях финансово-хозяйственной деятельности государственных муниципальных учреждений
Характеристики
| Код | pfhdgmu |
| Набор данных | Отчет о показателях финансово-хозяйственной деятельности государственных муниципальных учреждений |
| Объём | 45,161 записей, 651.6 MB |
| Поля с индексами | kpp, finyear, firstplanyear, secondplanyear, dateupdate, regioncode, indicatorsOfFinancialCondition.depositcash, indicatorsOfFinancialCondition.othersfin, indicatorsOfFinancialCondition.debentures, indicatorsOfFinancialCondition.kreditexprd, attachments.dateformat, attachments.publicdate, planPayment.finprovision, planPayment.fininsurance, planPayment.item781, planPayment.capitalinvest, planPayment.healthinsur, planPayment.servicetotal, planPayment.servicegrant, planPayment.strcode, planPayment.kbk, expensePayment.strcode, expensePayment.startyear, expensePayment.totalsumsplan, expensePayment.fz44first, expensePayment.fz44second, expensePayment.fz223next, expensePayment.fz223first, expensePayment.fz223second, temporaryResources.strcode, temporaryResources.amount, reference.strcode, reference.amount |
| Дата последнего обновления | 2021-06-14 07:07:17.661000 |
Доступ
Ключ передается в запросе через параметр apikey, ?apikey=МОЙ_КЛЮЧ_API
Пример кода (Python3)
import requests
import json
HOSTNAME = "api.crftr.net"
APIKEY = 'Укажите ключ для доступа к API'
query = {"kpp": "Укажите значение для фильтра"}
result = requests.get(
"https://%s/rawapi/v3/budgetgovru/pfhdgmu?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))