RenderMac Docs

Buyer API quickstart. Base URL: https://api.rendermac.com

1. Authenticate

Authorization: Bearer rm_live_…

2. List services

curl -s https://api.rendermac.com/v1/services \
  -H "Authorization: Bearer $RENDERMAC_API_KEY"

3. Create a stitch job

curl -s -X POST https://api.rendermac.com/v1/jobs \
  -H "Authorization: Bearer $RENDERMAC_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "service_id": "ffmpeg.stitch_export.v1",
    "pool": "private_first_party",
    "region": "us-east",
    "input": {
      "input_urls": ["https://…/clip1.mp4", "https://…/clip2.mp4"],
      "video_codec": "copy",
      "audio_codec": "copy"
    }
  }'

4. Poll + fetch output

curl -s https://api.rendermac.com/v1/jobs/$JOB_ID \
  -H "Authorization: Bearer $RENDERMAC_API_KEY"

curl -s https://api.rendermac.com/v1/jobs/$JOB_ID/output \
  -H "Authorization: Bearer $RENDERMAC_API_KEY"

Provider agent

Connect the agent WebSocket to wss://api.rendermac.com/v1/provider/ws with a device token from admin seed.

← RenderMac home