@metaphase-tech/itspending-client
v0.1.4
Published
TypeScript client for the public ITspending API (api.itspending.us/v1) — read-only federal IT spending data.
Readme
@metaphase-tech/itspending-client
TypeScript client for the public ITspending API — a read-only window into U.S. federal IT spending and portfolio data.
No API key. No auth. Just a typed wrapper around
https://api.itspending.us/v1.
npm i @metaphase-tech/itspending-clientimport { ItspendingClient } from '@metaphase-tech/itspending-client';
const client = new ItspendingClient();
const { data } = await client.list('it_portfolio', {
filter: { agency_code: 'eq.097' },
select: ['current_uii', 'investment_title', 'fy2025_internal_funding'],
order: 'fy2025_internal_funding.desc',
limit: 10,
});For the full endpoint catalog and query grammar, see the live Swagger UI at itspending.us/developer.
License
Public-domain federal data. Software under the Protoware License v1.0.
