Guide
Batch processing
Submit large catalogs asynchronously and poll for completion.
- Send a newline-delimited JSON payload to
POST /v1/listings/batch. - Capture the returned
job_id. - Poll
GET /v1/jobs/{job_id}untilstatusissucceeded, then fetch results.
Batch example
curl -X POST https://api.hermes.run/v1/listings/batch \
-H "Authorization: Bearer <api_key>" \
--data-binary "@catalog.ndjson"