Skip to main content
GET
/
jobs
List all jobs
curl --request GET \
  --url https://api-service.fribl.co/api/v1/jobs \
  --header 'X-API-KEY: <api-key>'
{
  "message": "<string>",
  "length": 123,
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "information": {
        "title": "Senior Software Engineer",
        "company": "Tech Corp",
        "description": "We are looking for...",
        "activity_sector": "Technology",
        "locations": [
          {
            "city": "Amsterdam",
            "country": "Netherlands"
          }
        ],
        "job_type": "Full-time",
        "contract_type": "Permanent"
      },
      "experience_preference": {
        "title": "Software Engineer",
        "activity_sector": "Technology",
        "description": "Experience in backend development",
        "duration": 60
      },
      "education_preference": {
        "degree": "Master of Science",
        "major": "Computer Science",
        "score": ""
      },
      "job_requirements": [
        "5+ years experience",
        "Strong communication"
      ],
      "skills": [
        {
          "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "skill": "JavaScript",
          "type": "hard-skill",
          "relationship": "SATISFIES",
          "explanation": "Candidate demonstrates strong JavaScript proficiency"
        }
      ],
      "created_at": "2024-01-01T00:00:00.000Z",
      "updated_at": "2024-01-01T00:00:00.000Z"
    }
  ],
  "pagination": {
    "total": 100,
    "offset": 0,
    "limit": 10,
    "has_more": true
  }
}

Authorizations

X-API-KEY
string
header
required

API key in UUID format. Include this header with every authenticated request.

Query Parameters

limit
integer
default:100

Maximum number of jobs to return per page.

offset
integer
default:0

Number of jobs to skip before starting to return results. Use in combination with limit for pagination.

Response

A paginated list of jobs.

message
string
required
length
integer
required

Number of jobs returned in this response.

data
object[]
required
pagination
object
required

Pagination metadata for list responses.