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
AI Agent
Install the private Skill and let the agent choose the workflow.
CLI
Send a local file and write the finished image back locally.
REST API
Build the upload, job, polling, and download flow directly.
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
- Upload the image as multipart form data.
- Create a job with a valid workflow ID and an idempotency key.
- Poll the job until it is
succeeded,failed, orcancelled. - Download the result to the caller's chosen location.
- 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.
