Authentication

Every API request requires a valid API key with active billing.


Getting Your API Key

  1. Visit rawjobbed.com/developers
  2. Choose Developer ($29/mo) or Agent Pro ($99/mo)
  3. Complete Stripe checkout
  4. Your API key will be emailed to you. It starts with rj_live_

Using Your Key

Include your key in every request using one of these methods:

Option 1: X-API-Key header (recommended)

curl -H "X-API-Key: rj_live_abc123..." \
  https://rawjobbed.com/api/v1/jobs

Option 2: Authorization Bearer header

curl -H "Authorization: Bearer rj_live_abc123..." \
  https://rawjobbed.com/api/v1/jobs

Error Responses

CodeMeaning
401Missing or invalid API key
429Monthly quota exceeded