StackOne Interviews API

The Interviews API from StackOne — 2 operation(s) for interviews.

Operations 2

GET /unified/ats/interviews/{id} Get Interview #
GET /unified/ats/interviews List Interviews #

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/stackone-interviews-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

stackone-interviews-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Marketing Accounts Interviews API
  description: The documentation for the StackOne Unified API - MARKETING
  contact: {}
  version: 1.0.0
servers:
- url: https://api.stackone.com
tags:
- name: Interviews
paths:
  /unified/ats/interviews/{id}:
    get:
      tags:
      - Interviews
      summary: Get Interview
      operationId: ats_get_interview
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      - name: page
        in: query
        description: The page number of the results to fetch
        schema:
          type: string
      - name: page_size
        in: query
        description: The number of results per page
        schema:
          type: string
          default: '25'
      - name: raw
        in: query
        description: Indicates that the raw request result is returned
        schema:
          type: boolean
          default: false
      - name: fields
        in: query
        description: The comma separated list of fields to return in the response (if empty, all fields are returned)
        schema:
          type: string
          default: ''
        example: id,application_id,interview_stage_id,interview_stage,status,interview_status,interviewer_ids,interview_parts,interviewers,start_at,end_at,meeting_url,created_at,updated_at
      - name: sync_token
        in: query
        description: The sync token to select the only updated results
        schema:
          type: string
      - name: updated_after
        in: query
        description: Use a string with a date to only select results updated after that given date
        schema:
          type: string
        example: '2020-01-01T00:00:00.000Z'
      - name: proxy
        in: query
        description: Query parameters that can be used to pass through parameters to the underlying provider request by surrounding them with "proxy" key
        style: deepObject
        explode: true
        schema:
          type: object
          additionalProperties: true
        example:
          proxy:
            custom_filter_param: '123'
            filter[eq][name]: Luke
      - name: x-account-id
        in: header
        description: The account identifier
        required: true
        schema:
          type: string
      responses:
        '400':
          description: Invalid request.
        '403':
          description: Forbidden.
        '412':
          description: 'Precondition failed: linked account belongs to a disabled integration.'
        '429':
          description: Too many requests.
        '500':
          description: Server error while executing the request.
        '501':
          description: This functionality is not implemented.
        '200':
          description: The interview with the given identifier was retrieved.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InterviewsResult'
      security:
      - basic: []
      x-speakeasy-group: ats
      x-speakeasy-name-override: get_interview
  /unified/ats/interviews:
    get:
      tags:
      - Interviews
      summary: List Interviews
      operationId: ats_list_interviews
      parameters:
      - name: page
        in: query
        description: The page number of the results to fetch
        schema:
          type: string
      - name: page_size
        in: query
        description: The number of results per page
        schema:
          type: string
          default: '25'
      - name: raw
        in: query
        description: Indicates that the raw request result is returned
        schema:
          type: boolean
          default: false
      - name: fields
        in: query
        description: The comma separated list of fields to return in the response (if empty, all fields are returned)
        schema:
          type: string
          default: ''
        example: id,application_id,interview_stage_id,interview_stage,status,interview_status,interviewer_ids,interview_parts,interviewers,start_at,end_at,meeting_url,created_at,updated_at
      - name: sync_token
        in: query
        description: The sync token to select the only updated results
        schema:
          type: string
      - name: updated_after
        in: query
        description: Use a string with a date to only select results updated after that given date
        schema:
          type: string
        example: '2020-01-01T00:00:00.000Z'
      - name: proxy
        in: query
        description: Query parameters that can be used to pass through parameters to the underlying provider request by surrounding them with "proxy" key
        style: deepObject
        explode: true
        schema:
          type: object
          additionalProperties: true
        example:
          proxy:
            custom_filter_param: '123'
            filter[eq][name]: Luke
      - name: x-account-id
        in: header
        description: The account identifier
        required: true
        schema:
          type: string
      responses:
        '200':
          description: The list of interviews was retrieved.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InterviewsPaginated'
        '400':
          description: Invalid request.
        '403':
          description: Forbidden.
        '412':
          description: 'Precondition failed: linked account belongs to a disabled integration.'
        '429':
          description: Too many requests.
        '500':
          description: Server error while executing the request.
        '501':
          description: This functionality is not implemented.
      security:
      - basic: []
      x-speakeasy-group: ats
      x-speakeasy-name-override: list_interviews
components:
  schemas:
    InterviewPart:
      type: object
      properties:
        meeting_provider:
          type: string
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
        id:
          type: string
        interviewer_ids:
          type: array
          items:
            type: string
        meeting_url:
          type: string
    InterviewsResult:
      type: object
      properties:
        raw:
          type: string
        data:
          $ref: '#/components/schemas/Interview'
      required:
      - data
    InterviewsPaginated:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/Interview'
        raw:
          type: string
        next_page:
          type: string
      required:
      - next_page
      - data
    Interviewer:
      type: object
      properties:
        email:
          type: string
        id:
          type: string
        first_name:
          type: string
        last_name:
          type: string
        name:
          type: string
      required:
      - id
      - first_name
      - last_name
      - name
      - email
    Interview:
      type: object
      properties:
        application_id:
          type: string
        end_at:
          type: string
          format: date-time
        created_at:
          type: string
          format: date-time
        interview_parts:
          type: array
          items:
            $ref: '#/components/schemas/InterviewPart'
        interviewers:
          type: array
          items:
            $ref: '#/components/schemas/Interviewer'
        updated_at:
          type: string
          format: date-time
        interview_stage:
          type: array
          items:
            $ref: '#/components/schemas/InterviewStage'
        start_at:
          type: string
          format: date-time
        meeting_url:
          type: string
        id:
          type: string
        interview_stage_id:
          type: string
        interview_status:
          $ref: '#/components/schemas/InterviewStatusEnum'
        interviewer_ids:
          type: array
          items:
            type: string
      required:
      - id
      - application_id
      - interview_stage_id
      - interview_status
      - interviewer_ids
      - start_at
      - end_at
    InterviewStage:
      type: object
      properties:
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
        id:
          type: string
        name:
          type: string
        order:
          type: number
      required:
      - id
      - name
    InterviewStatusEnum:
      type: object
      properties:
        source_value:
          type: string
        value:
          type: string
          enum:
          - unscheduled
          - scheduled
          - completed
          - cancelled
          - pending_feedback
          - unmapped_value
      required:
      - value
      - source_value
  securitySchemes:
    basic:
      type: http
      scheme: basic