FLO API

Get FLO data with one API

The FLO API returns product data from the Turkish footwear retailer FLO as clean JSON.

F
/flo/v1

3 active endpoints. Every call is 1 credit.

  • POST/flo/v1/search
  • POST/flo/v1/category/products
  • POST/flo/v1/product/detail

What FLO endpoints does ReefAPI ship?

3 live read endpoints. Read-only data API: no writes, no account actions, no dashboard access on the target site.

3 endpoints

search

1 cr

Search FLO by keyword (query), paginated.

required
query
optional
page, sort, max_rotations

category/products

1 cr

Browse a FLO category (category slug + optional cinsiyet gender), paginated.

required
category
optional
cinsiyet, page, sort, max_rotations

product/detail

1 cr

Full FLO product by url or product_id.

required
optional
url, product_id, max_rotations

Every parameter, every allowed value →

FLO API

3 of 3 endpoints, ready to run

View docs ↗

Search FLO by keyword (query), paginated.

1 credit1 required · 0 optional
POST/flo/v1/search
idle
// Press "Try it" and this pane shows exactly what the
// live site returned this second — including an empty
// result, if that is the truth. No key, no account.

How the FLO API works

FLO is a normal ReefAPI surface — the same four rules that hold for every other engine on the key.

01
Authenticate
x-api-key header

No OAuth app, no request signing, no per-site account. One key covers all 185 engines.

02
Call
POST /flo/v1/…

Every route is a POST with a JSON body. Parameters are validated against the published schema before anything is charged.

03
Pay
1 credit per call

Credits, not seats. Failed and blocked calls are never charged, and cache hits cost nothing.

04
Read
{ ok, data, meta, error }

One envelope everywhere. meta carries latency_ms, record_count and the endpoint that answered.

FLO ids: the product id, the size sku, the colorway sibling and the seller

FLO reuses one number in several shapes, and the trap is assuming a size sku and a product id live in the same space. They do not, and neither do colorways, which FLO models as separate products rather than as variants of one. Everything below was read off live search, category and detail responses on 2026-08-27.

IdentifierWhere it comes fromMeasured shape
product_idthe digits at the end of /urun/<slug>-<id>"101792825" - 9 digits, returned as a string
sizes[].skuone per sizethe product id with a 3-digit size index appended: 101792825001 through 101792825008
sizes[].barcodeone per size12-digit UPC-A, e.g. 196968173624 for EU 35.5
colors[].skuthe other colorways of the same shoea different product id with its own /urun/ URL: 101853780, 101792764
entity_idproduct/detail only"36310805520", 11 digits - FLO's internal record id, unrelated to product_id
seller_id / seller_typewho ships it10000 with seller_type "flo" is FLO's own stock; marketplace sellers are 5 digits. On 'canta' 14 of 24 rows were FLO and 10 were marketplace across 10152, 10179, 10243, 10410, 10476, 10719 and 10779
price / original_price / discount_ratesearch and category cardsJSON numbers in TRY: 3499.9 from 4999.9 with discount_rate 30
stock_messageproduct/detail only"1.000 adetten az" - FLO's own Turkish string, where the dot is a thousands separator, so this means fewer than one thousand

seller_id is an integer on search and category/products but a string inside the seller{} object on product/detail. Product ids also retire: 101465072, which still appears in older FLO links, now returns NOT_FOUND because flo.com.tr answers 404 for it.

What people build with FLO

The jobs this data is most often used for.

3

endpoints

1

credit per call

01

Pricing teams call search to track FLO shoe prices and campaigns.

02

Catalog-enrichment tools use product/detail to fill listings with images and options.

03

Market analysts use category/products to monitor a footwear segment.

What FLO data costs

The cheapest call here is 1 credit, so $15/mo (Pro) buys 10,000 of them — $1.50 per 1,000 credits. Credits roll over and never expire, and failed or blocked calls are not charged.

Full pricing →
$0.67–$1.50 / 1,000 credits
  • 1,000 free credits on signup, no card
  • One key, all 185 APIs, one credit pool
  • Failed and blocked calls are never charged
  • Credits roll over and never expire

Call it in two lines

Sign up, get 1,000 credits and one key that works on every engine. Then this is the whole protocol.

curl
curl -X POST https://api.reefapi.com/flo/v1/search \
  -H "x-api-key: $REEF_KEY" \
  -H "content-type: application/json" \
  -d '{"query":"nike"}'
python
import requests

r = requests.post(
    "https://api.reefapi.com/flo/v1/search",
    headers={"x-api-key": REEF_KEY},
    json={
  "query": "nike"
},
)
print(r.json()["data"])
FAQ

Have a question? We got answers.

The questions people actually ask before wiring up FLO.

Get a free key →
Why does product/detail return NOT_FOUND for a FLO id that looks valid?

Because FLO retires product ids when a colorway is discontinued, and the page then 404s. A measured lookup on 101465072, an id that appears in older Nike Revolution links, returned NOT_FOUND with the message that flo.com.tr answered 404. The reliable pattern is to take the url straight off a live search or category row and pass that, which resolved on the first try.

How does a FLO size sku relate to the product id?

The size sku is the product id with a 3-digit size index appended. Product 101792825 has skus 101792825001 through 101792825008 covering EU 35.5 to 40. The index order does not follow size order, so read the size field rather than inferring it from the suffix. Each size also carries its own 12-digit barcode.

Are FLO prices Turkish-formatted?

The prices are not. price, special_price, original_price and discount_rate are plain JSON numbers with currency "TRY", so 3499.9 is what it looks like. The one Turkish-formatted value in the payload is stock_message on product/detail: "1.000 adetten az" means fewer than one thousand units, because the dot there is a thousands separator, not a decimal point.

Are different colors of the same shoe variants or separate products?

Separate products. colors[] gives you the sibling colorways, and each one has its own sku, its own /urun/ URL and its own stock - the measured Nike Court Borough had 8 of them. If you are deduplicating a catalogue, colors[] is the join key; there is no single parent id sitting above them.

How do I tell FLO's own stock from a marketplace seller?

seller_type is "flo" or "marketplace", and seller_id 10000 is FLO itself. Marketplace sellers get 5-digit ids. The mix varies sharply by category: footwear queries came back entirely FLO-owned across 48 rows, while 'canta' returned 10 marketplace rows out of 24 spread across seven different sellers.

Where do I read FLO stock from?

sizes[].qty, per size, and it is a real count rather than a flag - the measured Nike Court Borough showed 0, 0, 0, 10, 178, 458, 1881 and 155 across its eight sizes. product/detail adds available_sizes, which is just the sizes whose qty is above zero, and stock_message, which is FLO's own coarse band.

Is the FLO description plain text or HTML?

HTML. product/detail returns description with FLO's own <strong> and <br> markup intact rather than stripping it, so you keep the paragraph structure and strip it yourself if you want plain text. attributes is separate: a flat object keyed by FLO's own attribute codes such as beden, beden_grubu and bnsr_taban_tipi.

How many products does a FLO category have, and how do I page it?

24 per page, 1-based, with meta.total carrying FLO's own count - 7,506 for spor-ayakkabi filtered to erkek, and 761 for the keyword 'nike'. category/products returns the same card shape as search, sizes and colors included, so a category crawl and a keyword crawl produce identical rows.

What is the FLO API?

FLO API is a ReefAPI endpoint group for flo It returns live JSON through POST requests under /flo/v1.

Is the FLO API free to try?

Yes. ReefAPI starts with 1,000 free credits, no card required. FLO calls use the same shared credit balance as every other ReefAPI engine.

Do I need a FLO login or account?

No login to FLO is needed for the API response. You call ReefAPI with your x-api-key header, and the playground can run live examples before you create a production key.

How fresh is the FLO data?

The page example is captured from a live search call, and production requests fetch live data through ReefAPI rather than a static sample.

How many credits does the FLO API use?

FLO actions currently cost 1 credit per successful call. Failed or blocked calls are free, and all APIs draw from one credit pool.

Can I call FLO from an AI assistant or MCP client?

Yes. Connect ReefAPI once through MCP and your assistant can call flo actions with the same key, credit pool and JSON envelope used by normal REST requests.

15 More APIs APIs on the same key

One key, one credit pool, one response envelope. If you are pulling FLO, you are one call away from the rest of the category — no second contract, no second integration.

Try it on your own data before you pay anything

The call above is the real endpoint, not a recording. A free key gives you 1,000 credits, the other 184 APIs, and the same envelope everywhere.

Endpoints, parameters and credit costs on this page are read from the live catalog and cannot drift from what the API accepts.