Inspired

segment · anything

Every pixel is a
place you can buy it.

We read the world inside a photograph, cut out the thing you want, and hand you the shelves that hold it. Now as an API, for any category of object.

Try it now Read the docs
perception the cut the market

Three moves

An image goes in. A shopping list comes out.

Every request runs the same three moves. Nothing in the middle is a stock photo lookup: each object is genuinely separated from the scene and rebuilt as its own product shot before anything is searched.

01 / PERCEIVE

Read the scene

One vision pass lists every separately purchasable object, what covers what, and the material and form of each — in enough detail to rebuild the parts the camera could not see.

02 / CUT

Separate the object

Each object is extracted on its own, occluders deleted and hidden parts continued, and returned as a clean product image on white. A chair behind a table comes back whole.

03 / MARKET

Find where it sells

The cut-out is searched by image against live retail listings, ordered as the search engine ranked it, with the product's title, price, image, and link.

Focus

One parameter changes the subject.

The pipeline is not about clothes. It is about objects. Send domain to tell it what kind of thing to look for, and the vision prompt, the schema, and the extraction instruction all change with it.

Clothing & accessories

Garments, shoes, bags, and jewellery worn by a person. Layers are separated: a shirt under a vest comes back without the vest.

domain=fashion

Furniture & interiors

Sofas, chairs, tables, lighting, rugs, shelving, and decor. A room photo returns each piece as its own product.

domain=furniture

Devices & electronics

Phones, laptops, audio, cameras, peripherals, and appliances. A desk photo returns the laptop, the keyboard, the monitor.

domain=devices

Beauty & personal care

Skincare, makeup, fragrance, haircare, and tools. Every bottle and jar on the shelf becomes its own shoppable item.

domain=beauty

Anything

No category filter, every distinctly purchasable object in the frame. Add focus to aim it at a category we have not named.

domain=everything

Need something narrower? domain=everything&focus=kitchen appliances only keeps the general reader and points it at one shelf.

The call

Start a request, poll it, read the items.

A full read takes a few minutes — it is several model calls and a search per object — so the primary endpoint is asynchronous. There is a synchronous one too, for callers that can wait on an open connection.

# 1 — start the read
curl -X POST https://inspired.jetskibay.com/api/v1/jobs \
  -H "x-api-key: $INSPIRED_KEY" \
  -F "image=@living-room.jpg" \
  -F "domain=furniture"

# { "requestId": "6f1c…", "status": "queued", "statusUrl": "…" }

# 2 — poll until it is complete
curl https://inspired.jetskibay.com/api/v1/jobs/6f1c… \
  -H "x-api-key: $INSPIRED_KEY"

Inside a request

Five stages, each one retryable.

Every unit of paid work is its own durable step. A failure on the fifth object retries the fifth object — it does not replay the vision call and four finished extractions.

STAGE 1

Analyze

One vision call lists up to six objects with their occlusion, material, and form.

STAGE 2

Extract

One image edit per object, run one at a time, each returned as a product shot on white.

STAGE 3

Search

An object's search starts as soon as its cut is ready, while the next one is still extracting.

STAGE 4

Curate

Results are deduplicated, low-value hosts dropped, and the engine's ordering preserved.

STAGE 5

Assemble

The cuts are composed into one square board and the whole result is stored for retrieval.

6objects per image, maximum
10ranked buy links per object
5focus domains, plus free-text focus
24hlife of a trial key

Get started

Mint a temporary key.

Enter your email and we send a key that works for 10 requests and expires in 24 hours. We store a hash of the key, never the key itself, so it is shown in that email and nowhere else.

Asking again before it expires re-issues a key with whatever is left of the allowance, so losing one costs nothing and asking twice buys nothing. Ready for production volume? Talk to us.