logo
Table Listing
A list of your PostGres Tables
Code Sample
Here's how to hit this endpoint programatically to get an array of these column names
POST
//define arguments
var args = {
   format: 'geojson'
};
 
//jQuery POST
$.post('http://pgrestapi.dfprod.dataplusfeminism.mit.edu/services/tables', args).done(function (data) {
   //Callback on success
   console.log(data);
})
GET
http://pgrestapi.dfprod.dataplusfeminism.mit.edu/services/tables?format=geojson
Optional Search
To filter the tables, use a partial search term. For example, to only show tables starting with the letter 'a' using a GET method, append search=a
http://pgrestapi.dfprod.dataplusfeminism.mit.edu/services/tables?format=geojson&search=a