iambik Audiobooks

At iambik we make audio out of books we love.

	API Specifications for Iambik
	=============================

	Currently only returns results in JSON format, though more formats may be added. Only LibriVox titles are being returned currently, but this WILL change soon.

	http://iambik.com/api/authors.json

	* returns:
		- id
		- name

	http://iambik.com/api/narrators.json

	* returns:
		- id
		- name

	http://iambik.com/api/genres.json

	* returns:
		- slug (i.e. sci-fi)
		- name

	http://iambik.com/api/languages.json

	* returns:
		- code (i.e. en-us)
		- name

	http://iambik.com/api/books.json

	* possible GET variables (for browse):

		?author_id=<author_id>
		?narrator_id=<narrator_id>
		?genre=<slug> 
		?language=<code>
		?starred=<true|false>
		?recent=<true|false>

	* possible search queries:

		?q=title:<title>
		?q=author:<author name>
		?q=description:<description>

	* returns array of:
		- id
		- title
		- author 
			- first_name
			- last_name
		- narrator
			- first_name
			- last_name
		- length
		- cover_art_url
		- cover_art_thumb_url
		- description
		- audio_files (array)
			- audio_file_url
			- audio_file_bytes
			- audio_file_duration
		- pub_date

	for each book.


	http://iambik.com/api/books.json/<book_id>/

	* returns
		- id
		- title
		- author 
			- first_name
			- last_name
		- narrator
			- first_name
			- last_name
		- length
		- cover_art_url
		- cover_art_thumb_url
		- description
		- audio_files (array)
			- audio_file_url
			- audio_file_bytes
			- audio_file_duration
		- pub_date