GET: https://api.thirdeye.live/quote
curl -X GET https://api.thirdeye.live/quote \
     -H 'Content-Type: application/json'

GET: https://api.thirdeye.live/authors
curl -X GET https://api.thirdeye.live/authors \
     -H 'Content-Type: application/json'

POST: https://api.thirdeye.live/quote/search
Accepts json lists of terms and phrases; either can be omitted.
curl -X POST https://api.thirdeye.live/quote/search \
     -H 'Content-Type: application/json' \
     -d '{"terms":["meditation"],"phrases":["when one experiences truth"]}'

This interface accepts a comma-seperated list of words and phrases. Below you must escape any commas that occur within your search phrases.

GET: https://api.thirdeye.live/quote/:id
curl -X GET https://api.thirdeye.live/quote/639cad89396266d6521b2a57 \
     -H 'Content-Type: application/json'

GET: https://api.thirdeye.live/authors/:name
curl -X GET https://api.thirdeye.live/quote/goenka \
     -H 'Content-Type: application/json'

POST: https://api.thirdeye.live/quote
curl -X POST https://api.thirdeye.live/quote \
     -H 'Content-Type: application/json'
     -H 'Authorization: {token}'
     -d '{"attribution": "author name", "quote": "this is a new quote"}'

PUT: https://api.thirdeye.live/quote/:id
curl -X PUT https://api.thirdeye.live/quote/639cad89396266d6521b2a57 \
     -H 'Content-Type: application/json'
     -H 'Authorization: {token}'
     -d '{"attribution": "s.n. goenka", "quote": "this is a new quote"}'

DELETE: https://api.thirdeye.live/quote/:id
curl -X DELETE https://api.thirdeye.live/quote/639cad89396266d6521b2a57 \
     -H 'Content-Type: application/json'
     -H 'Authorization: {token}'

Granting authorization tokens is not an automated process. All requests are reviewed by a human when time permits. This interface is primarily for demonstration purposes, therefore auth token requests are only granted when the requester is fully vetted and the request is deemed necessary for full demonstration. In the future, the user section of this API will be fully implemented allowing for broader access and usage.

You need to find a way to live your life, that it doesn't make a mockery of your values.

BILL AYERS