ClearCrowds

Getting Started

Choose an integration path and complete your first ClearCrowds image edit.

ClearCrowds exposes the same editing workflows used by the product UI. The public contract is a workflow ID, its input schema, a credit price, and an asynchronous job—not the model provider behind it.

Choose how to integrate

First API request

Create a Project and test key in the Developer Console, then list available workflows:

curl "$CLEARCROWDS_API_BASE_URL/api/v1/presets" \
  -H "Authorization: Bearer $CLEARCROWDS_API_KEY"

Never put an API key in browser code, a URL, a prompt, an Agent Skill file, or a source-control commit.

Job flow

  1. Upload the image as multipart form data.
  2. Create a job with a valid workflow ID and an idempotency key.
  3. Poll the job until it is succeeded, failed, or cancelled.
  4. Download the result to the caller's chosen location.
  5. Read the actual API Credits charged from the response.

The current Console remains at the product app during migration. The Console link in this hub takes you there without duplicating backend or billing logic.