request_id > status/result).What changes is the request/response schema, which is specific to your deployment and is shown in the Deployment API tab.
Endpoints
Base URL:https://api.runcomfy.net
| Endpoint | Method | Description |
|---|---|---|
/prod/v1/deployments/{deployment_id}/inference | POST | Submit an inference |
/prod/v1/deployments/{deployment_id}/requests/{request_id}/status | GET | Check job status |
/prod/v1/deployments/{deployment_id}/requests/{request_id}/result | GET | Get job result |
/prod/v1/deployments/{deployment_id}/requests/{request_id}/cancel | POST | Cancel queued job |
Common path parameters
deployment_id: Required string. The unique ID for your LoRA deployment.request_id: Required string for status, result, and cancel. The unique ID for a specific inference job.
Submit a request
request_id right away, plus URLs you can use to poll and fetch results. The request body must conform to the deployment’s input schema shown on the deployment details page under the API tab; treat that schema as the contract for required fields, types, enums, and defaults.
Request example
Input files (URLs)
If your schema includesimage_uri inputs such as ctrl_img_1, pass a publicly accessible HTTPS URL that returns the raw file via an unauthenticated GET request. The URL must not require cookies and must not redirect to a login page.
Response example
Monitor request status
in_queue, then in_progress, then a terminal outcome such as succeeded, failed, or cancelled.
Request example
Response example
Retrieve request results
output object. The output object conforms to the deployment’s output schema shown on the deployment details page under the API tab. Outputs typically include one or more hosted URLs.
Generated assets (for example, images or videos) are hosted on temporary storage for convenience. The hosted output URLs remain available for up to 7 days after a request succeeds; after that, the files are automatically removed and the URLs will expire. If you need to keep outputs longer, download them or copy them to your own persistent storage.
