Dynamically generate RESTful APIs from static CSVs. Provides JSON, XML, and HTML.
The simplicity with which CSV files can be created has made them the default data format for bulk data. It is comparatively more difficult to create an API to share the same data atomically and transactionally.
CSV to API acts as a filter, sitting between CSV and the browser, allowing users to interact with that CSV as if it was a native API. The column names (that is, the cells that comprise the first row in the file) function as the key names.
Note that this can be run on any server to create an API for any CSV file on any server. There is no need to install CSV to API for each unique CSV file or even each unique server—an organization can link to each and every one of their CSV files via CSV to API, or an individual could even use their own installation of CSV to API to access arbitrary remote CSV files as if they were APIs.
When Alternative PHP Cache (APC) is installed, parsed data is stored within APC, which accellerates its functionality substantially. While APC is not required, it is recommended highly.
- PHP
- APC (optional)
- Copy
class.csv-to-api.php
andindex.php
to your web server. - Load a CSV file via the URL
index.php
, using the arguments below.
source
: the URL to the source CSVsource_format
: if the url does not end in.csv
, you should specify 'csv' here (to facilitate future functionality)format
: the requested return format, eitherjson
,xml
, orhtml
(defaultjson
)callback
: if JSON, an optional JSONP callbacksort
: field to sort by (optional)sort_dir
: direction to sort, eitherasc
ordesc
(defaultasc
)- any field(s): may pass any fields as a key/value pair to filter by
header_row
: whether the source CSV has a header row; if missing, it will automatically assign field names (field_1
,field_2
, etc.); eithern
ory
(defaulty
)
All examples use data from REXUS, the primary tool used by the Public Building Service to track and manage the government's real property assets and to store inventory data, building data, customer data, and lease information.
/csv-to-api/?source=http://www.gsa.gov/dg/data_gov_bldg_star.csv
/csv-to-api/?source=http://www.gsa.gov/dg/data_gov_bldg_star.csv&format=xml
/csv-to-api/?source=http://www.gsa.gov/dg/data_gov_bldg_star.csv&format=json&callback=parse_results
/csv-to-api/?source=http://www.gsa.gov/dg/data_gov_bldg_star.csv&format=html
/csv-to-api/?source=http://www.gsa.gov/dg/data_gov_bldg_star.csv&sort=Bldg+Zip
/csv-to-api/?source=http://www.gsa.gov/dg/data_gov_bldg_star.csv&Region+Code=11
GPLv3 or later.