REST API + OAuth2 + Webhooks

Build with Vacantes.com

Integrate your ATS or hiring tools with our platform using our REST API and webhooks.

Request
curl -X GET https://api.vacantes.com/api/v1/jobs \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
  -H "Content-Type: application/json"
Response
{
  "data": [
    {
      "id": "job_abc123",
      "title": "Senior Frontend Developer",
      "status": "published",
      "location": "Remote - LATAM",
      "created_at": "2026-08-15T10:00:00Z"
    }
  ],
  "meta": { "total": 42, "page": 1 }
}

Getting Started

1

Register your app

Create a developer account and register your application to get API credentials.
2

Authenticate

Use OAuth2 (Authorization Code or Client Credentials) to get access tokens.
3

Integrate

Use the REST API to manage jobs, applications, and webhooks.