Loading the published reference record…
Automate outbound HTTP
Define an Action once (scrape a page or call a credentialed API), then run it
on demand or attach a Job to repeat it on a schedule. This page renders the
automation, scrape, and good-citizen sections of the canonical
api-reference.json
record agents consume.
Jobs & Actions in 5 minutes
- Check entitlement.
GET /v1/limits— confirmactionsEnabled/jobsEnabledand read your caps. Disabled plans getNOT_ENTITLED(403). Jobs & Scraping are off on all self-serve tiers by default and included on Enterprise; Pro, Agency, and Enterprise accounts can have them enabled after a short interview with the Relayplex team (hello@relayplex.com) — the grant lands in your account overlay and shows up inGET /v1/limits. - Create an Action.
POST /v1/actionswith anhttp.scrapeorhttp.requestspec. Add anoutputto write results into a site workspace, or omit it to get the body back inline. - Run it. One-off:
POST /v1/actions/:id/run(send anIdempotency-Keyfor mutating requests). Repeating:POST /v1/jobswith anintervalSec >= 15. - Read history.
GET /v1/runs?jobId=…shows status, httpStatus, and RU charged per execution.
Authorization: Bearer rlpx_… (your org API key) against api.relayplex.com.