API referenceBooks
Search cookbooks
Looks up cookbooks by title, for attributing a recipe to a book. Backed by an external bibliographic catalogue.
Looks up cookbooks by title, for attributing a recipe to a book. Backed by an external bibliographic catalogue.
Authorization
bearerAuth AuthorizationBearer <token>
A Clerk session JWT. Obtain one with a Clerk frontend SDK
(session.getToken()) or, for server-to-server use, with a Clerk
machine token. The token's sub claim is the Flambe user id that scopes
every request.
In: header
Query Parameters
q*string
Search text.
limit?integer
Range
1 <= value <= 20Default
8Response Body
application/json
application/json
application/json
curl -X GET "https://example.com/api/books/search?q=salt+fat+acid+heat"{ "books": [ { "title": "string", "authors": [ "string" ], "published_year": 0, "cover_url": "http://example.com", "isbn": "string" } ]}