Worklittle Job Boards API
The Job Boards API from Worklittle — 8 operation(s) for job boards.
The Job Boards API from Worklittle — 8 operation(s) for job boards.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.curl "https://apis.io/api/v1/apis/worklittle-job-boards-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: Worklittle Job Boards API
version: 1.0.0
description: 'Public careers-board surface for custom employer sites.
Unauthenticated reads/applies use CORS `*`. Bearer API keys get higher GET rate limits.'
servers:
- url: https://api.worklittle.com
tags:
- name: Job Boards
paths:
/job-boards/{company}:
get:
summary: Organization board profile
parameters:
- $ref: '#/components/parameters/company'
responses:
'200':
description: Organization profile
headers:
ETag:
schema:
type: string
tags:
- Job Boards
operationId: getJobBoardsByCompany
x-operation-id-source: derived
/job-boards/{company}/board:
get:
summary: Organization + job list bundle
parameters:
- $ref: '#/components/parameters/company'
- $ref: '#/components/parameters/limit'
- $ref: '#/components/parameters/cursor'
- $ref: '#/components/parameters/q'
- $ref: '#/components/parameters/department'
- $ref: '#/components/parameters/workplace_type'
- $ref: '#/components/parameters/employment_type'
- $ref: '#/components/parameters/location'
- name: include
in: query
schema:
type: string
example: facets
responses:
'200':
description: Board bundle
'304':
description: Not modified
tags:
- Job Boards
operationId: getJobBoardsByCompanyBoard
x-operation-id-source: derived
/job-boards/{company}/jobs:
get:
summary: List public jobs
parameters:
- $ref: '#/components/parameters/company'
- $ref: '#/components/parameters/limit'
- $ref: '#/components/parameters/cursor'
- $ref: '#/components/parameters/q'
- $ref: '#/components/parameters/department'
- $ref: '#/components/parameters/workplace_type'
- $ref: '#/components/parameters/employment_type'
- $ref: '#/components/parameters/location'
responses:
'200':
description: Job summaries with slug and url_path
tags:
- Job Boards
operationId: getJobBoardsByCompanyJobs
x-operation-id-source: derived
/job-boards/{company}/facets:
get:
summary: Facet counts for listed jobs
parameters:
- $ref: '#/components/parameters/company'
- $ref: '#/components/parameters/q'
- $ref: '#/components/parameters/location'
responses:
'200':
description: Facet counts
tags:
- Job Boards
operationId: getJobBoardsByCompanyFacets
x-operation-id-source: derived
/job-boards/{company}/jobs/{idOrSlug}:
get:
summary: Job detail
parameters:
- $ref: '#/components/parameters/company'
- $ref: '#/components/parameters/idOrSlug'
- name: preview
in: query
description: Employer preview_key for unpublished / non-public jobs
schema:
type: string
responses:
'200':
description: 'Job detail including application_fields, description_sections,
and description_sections_meta. Preview responses include `"preview": true`.
'
tags:
- Job Boards
operationId: getJobBoardsByCompanyJobsByIdOrSlug
x-operation-id-source: derived
/job-boards/{company}/jobs/{idOrSlug}/json-ld:
get:
summary: Google JobPosting JSON-LD helper
parameters:
- $ref: '#/components/parameters/company'
- $ref: '#/components/parameters/idOrSlug'
- name: canonical_url
in: query
schema:
type: string
format: uri
responses:
'200':
description: json_ld object plus description_sections
tags:
- Job Boards
operationId: getJobBoardsByCompanyJobsByIdOrSlugJsonLd
x-operation-id-source: derived
/job-boards/{company}/jobs/{idOrSlug}/parse-resume:
post:
summary: Resume autofill for board forms
parameters:
- $ref: '#/components/parameters/company'
- $ref: '#/components/parameters/idOrSlug'
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- resume_file
properties:
resume_file:
$ref: '#/components/schemas/ResumeFile'
responses:
'200':
description: Autofill map
'400':
description: role_closed | resume_autofill_disabled | validation errors
tags:
- Job Boards
operationId: postJobBoardsByCompanyJobsByIdOrSlugParseResume
x-operation-id-source: derived
/job-boards/{company}/jobs/{idOrSlug}/apply:
post:
summary: Submit application (public)
parameters:
- $ref: '#/components/parameters/company'
- $ref: '#/components/parameters/idOrSlug'
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/ApplyBody'
responses:
'201':
description: Application created
content:
application/json:
schema:
type: object
properties:
application:
type: object
properties:
id:
type: string
'400':
description: 'Error codes include role_closed, duplicate_application,
validation_error, resume_autofill_disabled.
'
tags:
- Job Boards
operationId: postJobBoardsByCompanyJobsByIdOrSlugApply
x-operation-id-source: derived
components:
parameters:
cursor:
name: cursor
in: query
schema:
type: string
workplace_type:
name: workplace_type
in: query
schema:
type: string
enum:
- remote
- hybrid
- on_site
limit:
name: limit
in: query
schema:
type: integer
minimum: 1
maximum: 100
default: 25
idOrSlug:
name: idOrSlug
in: path
required: true
description: public_job_id, posted job id, or public_slug
schema:
type: string
company:
name: company
in: path
required: true
schema:
type: string
q:
name: q
in: query
schema:
type: string
location:
name: location
in: query
schema:
type: string
department:
name: department
in: query
schema:
type: string
employment_type:
name: employment_type
in: query
schema:
type: string
schemas:
ApplyBody:
type: object
properties:
name:
type: string
email:
type: string
format: email
phone:
type: string
resume_file:
$ref: '#/components/schemas/ResumeFile'
answers:
type: object
additionalProperties: true
similar_job_alerts:
type: boolean
ResumeFile:
type: object
required:
- filename
- content_base64
properties:
filename:
type: string
content_base64:
type: string
mime:
type: string