Lever Postings API

Job postings published to the company careers site.

Operations 6

GET /postings List Postings #
POST /postings Create A Posting #
GET /postings/{id} Retrieve A Posting #
PUT /postings/{id} Update A Posting #
GET /{site} List Public Postings #
GET /{site}/{postingId} Retrieve A Public Posting #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • 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.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/lever-co-postings-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

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 Specification

lever-co-postings-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Lever Co Postings API
  version: '1.0'
  description: 'Operations tagged Postings across 2 of this provider''s published API definitions: lever-data-api-openapi.yml, lever-postings-api-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.lever.co/v1
  description: Lever Data API production
- url: https://api.lever.co/v0/postings
  description: Lever Postings API (global)
- url: https://api.eu.lever.co/v0/postings
  description: Lever Postings API (EU region)
tags:
- name: Postings
  description: Job postings published to the company careers site.
paths:
  /postings:
    get:
      tags:
      - Postings
      summary: List Postings
      operationId: listPostings
      parameters:
      - $ref: '#/components/parameters/Limit'
      - $ref: '#/components/parameters/Offset'
      responses:
        '200':
          description: A page of postings.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PostingList'
      security:
      - BasicAuth: []
      - OAuth2: []
    post:
      tags:
      - Postings
      summary: Create A Posting
      operationId: createPosting
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PostingCreate'
      responses:
        '201':
          description: Posting created.
      security:
      - BasicAuth: []
      - OAuth2: []
    servers:
    - url: https://api.lever.co/v1
      description: Lever Data API production
  /postings/{id}:
    parameters:
    - name: id
      in: path
      required: true
      schema:
        type: string
    get:
      tags:
      - Postings
      summary: Retrieve A Posting
      operationId: getPosting
      responses:
        '200':
          description: The posting.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Posting'
      security:
      - BasicAuth: []
      - OAuth2: []
    put:
      tags:
      - Postings
      summary: Update A Posting
      operationId: updatePosting
      responses:
        '200':
          description: Posting updated.
      security:
      - BasicAuth: []
      - OAuth2: []
    servers:
    - url: https://api.lever.co/v1
      description: Lever Data API production
  /{site}:
    parameters:
    - name: site
      in: path
      required: true
      description: Lever company site name (e.g. `acmeco`).
      schema:
        type: string
    get:
      tags:
      - Postings
      summary: List Public Postings
      description: 'Returns a paginated list of published postings for the given Lever site. Supports JSON (default),

        HTML, and iframe response modes via the `mode` query parameter.

        '
      operationId: listPublicPostings
      parameters:
      - name: skip
        in: query
        schema:
          type: integer
      - name: limit
        in: query
        schema:
          type: integer
          maximum: 100
      - name: location
        in: query
        schema:
          type: string
      - name: commitment
        in: query
        schema:
          type: string
      - name: team
        in: query
        schema:
          type: string
      - name: department
        in: query
        schema:
          type: string
      - name: level
        in: query
        schema:
          type: string
      - name: group
        in: query
        description: Group results by `location`, `commitment`, `team`, `department`, or `level`.
        schema:
          type: string
      - name: mode
        in: query
        description: Response format.
        schema:
          type: string
          enum:
          - json
          - html
          - iframe
          - xml
      - name: css
        in: query
        description: Optional URL of a CSS stylesheet to apply when mode is `html` or `iframe`.
        schema:
          type: string
      - name: resize
        in: query
        description: Enable iframe auto-resize.
        schema:
          type: boolean
      responses:
        '200':
          description: A page of postings, or HTML / XML content depending on `mode`.
    servers:
    - url: https://api.lever.co/v0/postings
      description: Lever Postings API (global)
    - url: https://api.eu.lever.co/v0/postings
      description: Lever Postings API (EU region)
  /{site}/{postingId}:
    parameters:
    - name: site
      in: path
      required: true
      schema:
        type: string
    - name: postingId
      in: path
      required: true
      schema:
        type: string
    get:
      tags:
      - Postings
      summary: Retrieve A Public Posting
      description: Returns a single published posting as JSON.
      operationId: getPublicPosting
      responses:
        '200':
          description: The posting.
    servers:
    - url: https://api.lever.co/v0/postings
      description: Lever Postings API (global)
    - url: https://api.eu.lever.co/v0/postings
      description: Lever Postings API (EU region)
components:
  parameters:
    Offset:
      name: offset
      in: query
      description: Opaque cursor returned in the previous response's `next` field.
      schema:
        type: string
    Limit:
      name: limit
      in: query
      description: Number of records to return (1-100, default 100).
      schema:
        type: integer
        minimum: 1
        maximum: 100
        default: 100
  schemas:
    PostingCreate:
      type: object
      required:
      - text
      properties:
        text:
          type: string
        state:
          type: string
        categories:
          type: object
        owner:
          type: string
    Posting:
      type: object
      properties:
        id:
          type: string
        text:
          type: string
        state:
          type: string
          enum:
          - draft
          - internal
          - published
          - closed
        categories:
          type: object
          properties:
            commitment:
              type: string
            location:
              type: string
            team:
              type: string
            department:
              type: string
            level:
              type: string
        country:
          type: string
        createdAt:
          type: integer
          format: int64
        updatedAt:
          type: integer
          format: int64
        hostedUrl:
          type: string
          format: uri
        applyUrl:
          type: string
          format: uri
        workplaceType:
          type: string
          enum:
          - on-site
          - hybrid
          - remote
          - unspecified
        salaryRange:
          type: object
          properties:
            min:
              type: number
            max:
              type: number
            currency:
              type: string
            interval:
              type: string
        owner:
          type: string
    PostingList:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/Posting'
        hasNext:
          type: boolean
        next:
          type: string
  securitySchemes:
    BasicAuth:
      type: http
      scheme: basic
      description: HTTP Basic authentication using a Lever API key as the username and an empty password.
    OAuth2:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: https://auth.lever.co/authorize
          tokenUrl: https://auth.lever.co/oauth/token
          scopes:
            offline_access: Issue refresh tokens.
            opportunities:read:admin: Read opportunities.
            opportunities:write:admin: Write opportunities.
            postings:read:admin: Read postings.
            postings:write:admin: Write postings.
            interviews:read:admin: Read interviews.
            interviews:write:admin: Write interviews.
            feedback:read:admin: Read feedback.
            feedback:write:admin: Write feedback.
            users:read:admin: Read users.
            users:write:admin: Write users.
            requisitions:read:admin: Read requisitions.
            requisitions:write:admin: Write requisitions.
            offers:read:admin: Read offers.
            files:read:admin: Read files.
            files:write:admin: Write files.
            webhooks:read:admin: Read webhook subscriptions.
            webhooks:write:admin: Write webhook subscriptions.
            audit_events:read:admin: Read audit log events.
            eeo_responses:read:admin: Read EEO survey responses.
            eeo_responses_pii:read:admin: Read EEO survey responses with PII.
            confidential:access:admin: Access confidential records.
x-refined-from:
- lever-data-api-openapi.yml
- lever-postings-api-openapi.yml