RawJob API Documentation

The RawJob API gives you programmatic access to real-time, structured hiring data crowdsourced from X/Twitter.


Quick Start

  1. Get an API key at rawjobbed.com/developers ($29/mo Developer or $99/mo Agent Pro)
  2. Include your key in the X-API-Key header (or Authorization: Bearer rj_live_...)
  3. Call GET /api/v1/jobs to search jobs

Try it now:

curl -H "X-API-Key: rj_live_YOUR_KEY" \
  "https://rawjobbed.com/api/v1/jobs?domain=engineering&remote_only=true"

Base URL

https://rawjobbed.com/api/v1

Rate Limits

PlanPriceMonthly QuotaWebhooks
Developer$29/mo10,000 callsNo
Agent Pro$99/mo100,000 callsYes
EnterpriseCustomUnlimitedYes

Response Format

All endpoints return JSON. List endpoints include pagination metadata:

{
  "data": [...],
  "meta": {
    "total": 142,
    "page": 1,
    "per_page": 20,
    "pages": 8
  }
}