Discover/glints.com API
live

glints.com APIglints.com

Access real-time job listings from Glints Indonesia. Search by keyword, job type, and work arrangement. Retrieve full job descriptions, requirements, and company data.

Endpoints
2
Updated
13h ago
Try it
Page number for pagination, starting at 1.
Search term to filter jobs by title, skill, or company name. When omitted, returns all ava
Filter by job type. Accepts: FULL_TIME, CONTRACT, INTERNSHIP, PART_TIME, FREELANCE, PROJEC
Number of results per page, between 1 and 30.
ISO country code to filter jobs by country.
Filter by work arrangement. Accepts: ONSITE, HYBRID, REMOTE.
api.parse.bot/scraper/936f7e3e-fb5b-4851-bed8-dfada35f82cf/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/936f7e3e-fb5b-4851-bed8-dfada35f82cf/search_jobs?keyword=Python&page_size=3' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 2 totalclick to expand

Search for job openings on Glints Indonesia. Returns paginated job listings with company info, location, salary, skills, category, and more. When no keyword is provided, returns all available jobs sorted by relevance.

Input
ParamTypeDescription
pageintegerPage number for pagination, starting at 1.
keywordstringSearch term to filter jobs by title, skill, or company name. When omitted, returns all available jobs.
job_typestringFilter by job type. Accepts: FULL_TIME, CONTRACT, INTERNSHIP, PART_TIME, FREELANCE, PROJECT_BASED.
page_sizeintegerNumber of results per page, between 1 and 30.
country_codestringISO country code to filter jobs by country.
work_arrangementstringFilter by work arrangement. Accepts: ONSITE, HYBRID, REMOTE.
Response
{
  "type": "object",
  "fields": {
    "jobs": "array of job listing objects with company, location, salary, skills, and category details",
    "page": "integer current page number",
    "has_more": "boolean indicating if more pages exist",
    "page_size": "integer results per page",
    "total_results": "integer number of results on this page"
  },
  "sample": {
    "data": {
      "jobs": [
        {
          "id": "0f6ae2cb-d289-4524-83fd-2956ff566895",
          "title": "Python Programmer",
          "is_hot": false,
          "salary": {
            "max": null,
            "min": 4000000,
            "mode": "MONTH",
            "type": "BASIC",
            "currency": "IDR"
          },
          "skills": [
            {
              "name": "SQL",
              "must_have": true
            },
            {
              "name": "Python",
              "must_have": true
            }
          ],
          "source": "NATIVE",
          "status": "OPEN",
          "company": {
            "id": "821cb472-123f-478c-acee-88f29061e469",
            "logo": "e306d114a40d8d7cb812618ea3765e70.png",
            "name": "BVR",
            "size": "BETWEEN_51_AND_200",
            "is_vip": false,
            "status": "VERIFIED",
            "industry": "Retail"
          },
          "country": "Indonesia",
          "category": {
            "id": "dcf154bc-d6ae-40df-afd7-bf88152235ee",
            "name": "Backend Developer",
            "level": 3,
            "parents": [
              {
                "id": "b298311a-b0e4-4265-8b11-1b17d3ea553e",
                "name": "Backend Development",
                "level": 2
              }
            ]
          },
          "job_type": "FULL_TIME",
          "location": "Cipondoh, Tangerang, Banten",
          "created_at": "2026-04-13T03:25:47.984Z",
          "updated_at": "2026-05-13T06:46:05.423Z",
          "country_code": "ID",
          "education_level": "BACHELOR_DEGREE",
          "salary_estimate": null,
          "work_arrangement": "ONSITE",
          "should_show_salary": true,
          "max_years_of_experience": 3,
          "min_years_of_experience": 1
        }
      ],
      "page": 1,
      "has_more": true,
      "page_size": 3,
      "total_results": 3
    },
    "status": "success"
  }
}

About the glints.com API

The Glints Indonesia API provides 2 endpoints to search and retrieve job listings from glints.com/id, exposing over 15 fields per listing including job title, type, salary, skills, and work arrangement. Use search_jobs to query the live job board with filters for employment type, remote work options, and location, then call get_job_details to fetch the full job description, interview process, and status for any specific listing by its UUID.

Searching Jobs

The search_jobs endpoint accepts an optional keyword parameter to filter listings by job title, skill, or company name. When no keyword is supplied, it returns all currently available jobs sorted by relevance. Additional filters include job_type (FULL_TIME, CONTRACT, INTERNSHIP, PART_TIME, FREELANCE), work_arrangement (ONSITE, HYBRID, REMOTE), and country_code for geographic scoping. Pagination is controlled via page and page_size (1–30), and the response includes a has_more boolean so you can walk through result sets programmatically. Each job object in the returned jobs array includes company info, location, salary range where disclosed, and relevant skills.

Job Details

The get_job_details endpoint takes a job_id UUID — obtained from a prior search_jobs call — and returns the complete record for that listing. This includes the full description text, job status (OPEN or CLOSED), created_at and updated_at ISO timestamps, the category_id and district_id for classification and location, and the company_id of the hiring organization. Fields like type and status allow downstream filtering to skip listings that have already closed.

Coverage and Freshness

Data reflects the live Glints Indonesia job board. Results are real-time, so job status, salary fields, and listing availability reflect the current state of the platform. The total_results field in search_jobs reports the count of results on the current page rather than a global total, so pagination via has_more is the reliable way to enumerate all matching listings.

Common use cases
  • Aggregate Indonesian tech job listings filtered by REMOTE work arrangement for a remote-work job board
  • Track new FULL_TIME openings at specific companies by polling search_jobs with a company name as keyword
  • Build a salary benchmarking dataset using the salary fields returned across thousands of Glints listings
  • Feed a job-alert system that checks for new postings by comparing created_at timestamps from get_job_details
  • Filter internship listings by country_code to surface student-relevant roles in specific Southeast Asian markets
  • Classify job demand by skill category using the skills and category_id fields from search results
  • Monitor whether a specific job listing is still OPEN before surfacing it to end users using the status field from get_job_details
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Glints have an official public developer API?+
Glints does not publish a public developer API or API documentation for external developers as of mid-2025. This Parse API provides structured access to Glints Indonesia job data without requiring direct integration with the platform.
What does get_job_details return that search_jobs does not?+
The get_job_details endpoint returns the full job description text, the interview process details, and explicit created_at and updated_at timestamps. The search_jobs endpoint returns abbreviated listing data suited for browsing — you need to call get_job_details with a specific job_id UUID to get the complete record.
Does search_jobs return a global total count of matching jobs?+
The total_results field reflects the number of results on the current page, not a global match count. To enumerate all matching listings, iterate pages using the has_more boolean until it returns false.
Does the API cover job listings from Glints markets outside Indonesia?+
The API is scoped to Glints Indonesia (glints.com/id). Listings from Glints Singapore, Vietnam, or other regional markets are not currently covered. You can fork the API on Parse and revise it to target a different Glints regional domain if you need coverage for another country.
Can I retrieve company profiles or applicant data through this API?+
Not currently. The two endpoints cover job listings and job details only — company data is limited to the company_id and basic company info embedded within job records. Standalone company profiles and applicant or application status data are not exposed. You can fork the API on Parse and revise it to add a company-detail endpoint.
Page content last updated . Spec covers 2 endpoints from glints.com.
Related APIs in JobsSee all →
usajobs.gov API
Search federal job openings and view detailed job announcements from USAJobs.gov, plus access historical job data and reference codes to help you find the right government position. Filter and explore thousands of federal career opportunities with comprehensive job details all in one place.
jobs.lever.co API
Access job postings on any Lever-hosted company job board. List, filter, search, and group open roles, retrieve full posting details, and extract application form questions via Lever's public API.
ca.indeed.com API
Search for jobs across Canada and access detailed job listings, company profiles, employee reviews, and salary information all in one place. Build recruitment tools, career research applications, or job market analysis platforms with comprehensive employment data from Indeed Canada.
in.indeed.com API
in.indeed.com API
indeed.com API
Search and discover job opportunities on Indeed while accessing detailed job descriptions, company profiles, and salary insights all in one place. Get comprehensive career information including specific compensation data to help you find and evaluate the right job opportunity for you.
job-boards.greenhouse.io API
Access job listings, department information, office locations, and application forms from Greenhouse.io job boards, then submit applications directly through the platform. Search and filter available positions by keywords to find roles that match your qualifications.
levels.fyi API
Access real compensation data, benefits packages, and salary trends across tech companies and job levels. Retrieve internship pay, H-1B visa salary records, company profiles, and detailed breakdowns by role and level.
uk.indeed.com API
Search for job listings across Indeed UK and retrieve complete job details including descriptions, requirements, salary information, and application links. Filter by job type, experience level, location, remote preference, and more to find relevant opportunities.
Glints Indonesia Jobs API – Search & Details · Parse