npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

sunlight-congress-api

v0.3.1

Published

A simple wrapper for the Sunlight Congress API from the Sunlight Foundation

Downloads

21

Readme

Sunlight Congress API Wrapper

A node.js wrapper for the Sunlight Congress API from the Sunlight Foundation.

Installing

npm install sunlight-congress-api

Usage

var api = require("sunlight-congress-api");

var success = function(data){
	console.log(data);
}

api.init("SOMEAPIKEY");

api.votes().filter("year", "2012").call(success);

Demo

A small demo is provided. After creating a config.js file, run node run.js in the demo folder to try it out.

API

Base Module

init(apikey)

Sets the apikey for all endpoint modules created following. Also allows a user to direct requests to a custom server.

api.init("SOMEAPIKEY");

OR

api.init({
	key: "SOMEAPIKEY",
	url: "https://congress.api.sunlightfoundation.com/"
});

clone(obj)

Clones whatever object it is passed into another object. Good for creating similar but different endpoint modules.

var votes2012 = api.votes()
					.filter("chamber", "house")
					.filter("year", "2012");

var votes2013 = api.clone(votes2012)
					.filter("year", "2013");

Endpoints

There are currently 10 endpoints to the Sunlight Congress API.

  • bills: bills() provides info on legislation in the House and Senate, back to 2009. Updated daily.
  • bills/search: billsSearch() does a full text search over legislation.
  • committees: committees() lists current committees, subcommittees, and their membership.
  • districts/locate: districtsLocate() finds congressional districts for a latitude/longitude or zip.
  • floor_updates: floorUpdates() lists up-to-the-minute updates from the floor of the House and Senate.
  • hearings: hearings() lists committee hearings in Congress. Updated as hearings are announced.
  • legislators: legislators() brings up current legislators' names, IDs, biography, and social media.
  • legislators/locate: legislatorsLocate() finds representatives and senators for a latitude/longitude or zip.
  • upcoming_bills: upcomingBills() lists bills scheduled for debate in the future, as announced by party leadership.
  • votes: votes() provide access to roll call votes in Congress, back to 2009. Updated within minutes of votes.

Endpoint Wide Functions

call(success, [failure])

Issues a GET request to the API. Async calls success on success and failure on failure.

api.votes().call(function(data){ 
	console.log(data.results.length);
});
  • success: callback function on a successful call.
  • failure: callback function on a failed call. Defaults to console.log.

If either success or failure aren't defined, .call() will return a promise, which will be resolved or rejected as appropriate.

  api.votes().call().then(function(data){ 
    console.log(data.results.length);
  });

explain()

Turns on explain mode which add a JSON response with how the API interpreted the query, and database-specific explain information.

This is a convenience for debugging, not a "supported" API feature. Don't make automatic requests with explain mode turned on.

api.votes().explain();

fields(field1, field2, ..., fieldN)

Provides control over which fields to have Sunlight Congress API return to you. This is very helpful, as the API returns default fields only if this is not used.

This function takes any number of arguments. Each argument will be added the request string.

api.votes().fields("year", "chamber") //returns the YEAR and CHAMBER fields from votes

filter(field, value, [operator])

Adds query parameter to quests. Allows for chaining.

api.votes().filter("year", "2012"); // get all votes with year 2012
  • field: this is the field you want to filter on.
  • value: the value the field must eval to, to be returned.
  • operator: how to perform the eval. Defaults to =.
    • = - the field is equal to the value (default).
    • gt - the field is greater than this value
    • gte - the fiels is greater than or equal to this value
    • lt - the field is less than this value
    • lte - the field is less than or equal to this value
    • not - the field is not this value
    • all - the field is an array that contains all of these values (separated by "|")
    • in - the field is a string that is one of these values (separated by "|")
    • nin - the field is a string that is not one of these values (separated by "|")
    • exists - the field is both present and non-null (supply "true" or "false")

getEndpoint()

Returns the uri that would be called if call() was issued on the object.

var ep = api.districtsLocate().page(1, 10).getEndpoint();
console.log(ep);
//RESULT: http://congress.api.sunlightfoundation.com/districts/locate/?apikey=SOMEAPIKEY&per_page=10&page=1

next(success, failure)

Increments page by 1 and then issues a call. If page has not been set it will increment it will call the first page.

var committees = api.committees();
for(var i=1; i<5; i++){
	committees.next(buildSuccess("COMMITTEESS PAGE "+i));
}
  • success: callback function on a successful call.
  • failure: callback function on a failed call. Defaults to console.log.

.next() will return the result of the underlying .call() method. This means if success or failure isn't defined, a promise will be returned.

order(field, [direction])

Overloaded options provided for objects and arrays, see below for examples.

Provides control over the ordering of results. This is vital to pagination returns.

//orders the result of votes by year from newest to oldest
api.votes().order("year", "desc"); 
  • field: which field to sort by.
  • direction: how to direct. Two options, desc and asc. Defaults to desc.

If you want to multi-order a call, use the order function twice or use one of the overloaded options.

//orders the results by chamber from a to z and then by year from newest to oldest.
api.votes().order("chamber", "asc").order("year");

//add multiple at once with a single call
api.votes().order(["year", "desc"], ["chamber", "desc"]);
api.votes().order({field:"year", direction:"asc"}, {field:"chamber", direction:"asc"});

page(pagenumber, [pagesize])

Provides control over the pages Sunlight Congress API returns to you.

api.votes().page(2, 5); //return page 2 of votes where the pagesize is 5 items.
  • pagenumber: which page to have returned.
  • pagesize: how many items to return on a page. Defaults to 20. Max is 50.

search(q)

Provides control over the search feature. On endpoints ending in /search, it checks that the query string is valid for full text search.

// Senate hearings matching "environment"
api.hearings().filter("chamber", "senate").search("environment");

//House floor updates matching "committee of the whole"
api.floorUpdates().filter("chamber", "house").search("committee of the whole");

//Endpoints ending in /search can take multiple phrases.
//Phrase must be wrapped in " not '

//Bills matching "freedom of information" and words starting with "accountab"
api.billsSearch.search("\"freedom of information\" accountab*");

//Bills with "transparency" and "accountability" within 5 words of each other
api.billsSearch.search('"transparency accountability"~5');
  • q: what to search for.

Full Text Search Endpoints

Endpoints Included

  • billsSearch

highlight([startTag, endTag])

Highlights the text which matches the search wrapped in em tags, unless other tags are provided.

// Bills with "transparency" and "accountability" within 5 words of each other
// Highlighted in red
api.billsSearch()
	.search('"transparency accountability"~5')
	.highlight("<span style='color:red;'>", "</span>");
  • startTag: the html tag to start the highlight. Defaults to
  • endTag: the html tag to end the highlight. Defaults to