Job submissions
POST /submissions Session or API key
Submit a vacancy for review.
Body
urlstring required- Link to the original posting.Example
https://acme.com/careers/123 titlestring required- Job title.Example
Senior Go Engineer companystring required- Company name.Example
Acme locationstring- Free-text location.Example
Remote — EU remoteboolean- Whether the role is remote.Example
true descriptionstring- Job description.
sourcestring- Origin hint (optional).
posted_atstring (RFC3339)- Original posting date (optional).
curl -X POST "https://freehire.dev/api/v1/submissions" \
-H "Authorization: Bearer $FREEHIRE_API_KEY" \
-H 'Content-Type: application/json' \
-d '{"url":"https://acme.com/careers/123","title":"Senior Go Engineer","company":"Acme","remote":true}'{ "data": { "id": 9, "status": "pending", "title": "Senior Go Engineer", "company": "Acme", "url": "https://acme.com/careers/123" } }