Developers

Build on the FlowFinds API

The FlowFinds API: one HTTP interface, the same one the console uses, documented endpoint by endpoint.

QuickstartAPI reference

What the API is shaped like

A JSON interface served from https://flowfinds.ai. The session is a cookie, set on the first response; there is no API key and no bearer token. A refusal is usually a 200 with a reason — the request was well-formed and the answer is a fact about your account. Nothing under /api/ is cacheable.

90 endpoints are documented from their handlers, in 10 groups, each with parameters, responses, errors and a runnable request. Read authentication and errors before the rest.

curl -s -b cookies.txt -c cookies.txt \
  "https://flowfinds.ai/api/find"

curl -s -b cookies.txt -c cookies.txt \
  -X POST -H 'Content-Type: application/json' \
  -d '{"product_id": "…"}' \
  "https://flowfinds.ai/api/select"

Endpoint groups

Full reference

Models and engines

View all

Everything for building

Start with the quickstart

Read the quickstart