Flambe docs

Search cookbooks

Looks up cookbooks by title, for attributing a recipe to a book. Backed by an external bibliographic catalogue.

GET
/api/books/search

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
Range1 <= value <= 20
Default8

Response 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"    }  ]}