SavingsAPI¶
SavingsAPI
¶
SavingsAPI(client: DogeAPIClient, api: DogeAPI)
Access all endpoints under /savings including grants, contracts, and leases.
This class handles paginated retrieval of financial savings data via a shared DogeAPIClient. Supports both Pydantic model and dict export modes.
client : DogeAPIClient Shared HTTP client instance for making API calls. api : DogeAPI Reference to parent DogeAPI instance for runtime config flags.
Methods:
-
get_grants
–Retrieve cancelled or reduced government grants.
-
get_contracts
–Retrieve cancelled or optimized government contracts.
-
get_leases
–Retrieve terminated or downsized government leases.
Source code in src/pydoge_api/endpoints/savings.py
20 21 22 23 24 25 26 27 28 29 30 |
|
get_grants
¶
get_grants(
*,
sort_by: Optional[str] = None,
sort_order: Optional[str] = None,
page: int = 1,
per_page: int = 100
)
Retrieve cancelled or reduced government grants.
Parameters:
-
sort_by
¶str
, default:None
) –Field to sort by. Options include 'savings', 'value', or 'date'.
-
sort_order
¶str
, default:None
) –Sort direction. One of 'asc' or 'desc'.
-
page
¶int
, default:1
) –Starting page number for paginated results.
-
per_page
¶int
, default:100
) –Number of records to retrieve per page.
Returns:
-
GrantResponse or dict or Response
–Pydantic model if
output_pydantic=True
, exportable dict ifoutput_pydantic=False
, or raw response ifhandle_response=False
.
Source code in src/pydoge_api/endpoints/savings.py
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
|
get_contracts
¶
get_contracts(
*,
sort_by: Optional[str] = None,
sort_order: Optional[str] = None,
page: int = 1,
per_page: int = 100
)
Retrieve cancelled or optimized government contracts.
Parameters:
-
sort_by
¶str
, default:None
) –Field to sort by. Options include 'savings', 'value', or 'agency'.
-
sort_order
¶str
, default:None
) –Sort direction. One of 'asc' or 'desc'.
-
page
¶int
, default:1
) –Starting page number for paginated results.
-
per_page
¶int
, default:100
) –Number of records to retrieve per page.
Returns:
-
ContractResponse or dict or Response
–Pydantic model if
output_pydantic=True
, exportable dict ifoutput_pydantic=False
, or raw response ifhandle_response=False
.
Source code in src/pydoge_api/endpoints/savings.py
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 |
|
get_leases
¶
get_leases(
*,
sort_by: Optional[str] = None,
sort_order: Optional[str] = None,
page: int = 1,
per_page: int = 100
)
Retrieve terminated or downsized government leases.
Parameters:
-
sort_by
¶str
, default:None
) –Field to sort by. Options include 'sq_ft', 'value', or 'agency'.
-
sort_order
¶str
, default:None
) –Sort direction. One of 'asc' or 'desc'.
-
page
¶int
, default:1
) –Starting page number for paginated results.
-
per_page
¶int
, default:100
) –Number of records to retrieve per page.
Returns:
-
LeaseResponse or dict or Response
–Pydantic model if
output_pydantic=True
, exportable dict ifoutput_pydantic=False
, or raw response ifhandle_response=False
.
Source code in src/pydoge_api/endpoints/savings.py
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 |
|