usaspending-api icon indicating copy to clipboard operation
usaspending-api copied to clipboard

Server application to serve U.S. federal spending data via a RESTful API

Results 93 usaspending-api issues
Sort by recently updated
recently updated
newest added

When applying an end_date to the time_period filter, the results ignore the end_date subfilter. For example, ``` { "subawards":false, "limit":1, "page":1, "filters":{ "award_type_codes":["A","B","C","D"], "time_period":[ { "start_date":"2021-05-20", "end_date":"2021-05-21", "date_type":"last_modified_date" } ]...

The following gives me a 500 error. No idea why. I don't think I'm missing any essentials... ``` myurl = 'https://api.usaspending.gov/api/v2/bulk_download/awards/' mydata = { "filters": { "prime_award_types": ["A", "B", "C",...

Hello, OTA's do not appear in the bulk-downloads API? For instance, W15QKN209P001 doesn't appear in this get request. https://github.com/fedspendingtransparency/usaspending-api/blob/master/usaspending_api/api_contracts/contracts/v2/bulk_download/awards.md

The subawards attribute, for numerous endpoints tested (such as /api/v2/search/spending_by_award/ and /api/v2/search/spending_by_category/country/) elicits a when set to True and a when set to False. Please let me know if this...

The only way to get award details via agency identifier as far as I know is to call `https://api.usaspending.gov/api/v2/bulk_download/awards/`. It would be nice if a json response was returned. I...

I am fetching data from `/api/v2/search/spending_by_transaction/` in pages of 100 results and consistently hit http error 503 when requesting page 500 of the result set. I think the error is...

Am I configuring dates wrong? The following filter ignores the time_period: ``` mydata = { "filters": { "time_period": [ { "start_date": "2021-01-01", "end_date": "2021-12-31" } ], "award_type_codes": ["10"], "recipient_scope": "domestic",...

Hi, We have a requirement to remove specific awards from a filtered set of results. It doesn't look like the API supports it here: https://github.com/fedspendingtransparency/usaspending-api/blob/master/usaspending_api/api_contracts/contracts/v2/references/filter.md Is it possible using this...

I'm interested in using your API to visualize the categories of the federal budget. Is there already an existing way to categorize the values returned by this API into Mandatory...

Hello, I'm using the /api/v2/download/transactions/ endpoint to get transaction level data from 2015. My filter specifies the start_date and the end_date like this: "date_range": { "start_date": "**2015-01-01**", "end_date": "2021-03-02", },...