Skip to content

Instantly share code, notes, and snippets.

@bsweger
Last active June 7, 2017 01:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bsweger/91d85b7f4ef1fb9c4f0a54c541ef5da6 to your computer and use it in GitHub Desktop.
Save bsweger/91d85b7f4ef1fb9c4f0a54c541ef5da6 to your computer and use it in GitHub Desktop.
financial_balances_agency.md

Retrieve financial balances by agency and fiscal year

Route: /api/v2/financial_balances/agencies

Method: GET

This route retrieves financial balance information by funding agency and fiscal year

Sample Request

/api/v2/financial_balances/agencies?funding_agency=775&fiscal_year=2017

Request Params

  • fiscal_year - required - an integer representing the fiscal year to filter on
  • funding_agency_id - required - an integer representing the funding agency ID to filter on (should be an agency_id flagged as top tier)

Response (JSON)

"results": [
    {
      "budget_authority_amount": "120112040.58",
      "obligated_amount": "299640.00",
      "outlay_amount": "8063724.83"
    }
]
@russellbodine
Copy link

👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment