> ## Documentation Index
> Fetch the complete documentation index at: https://docs.ropes.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Problems

> Get all technical assessments and video screens available to the authenticated organization, including status and a type discriminator. Optionally filter by integration source and external ID.



## OpenAPI

````yaml https://api.ropes.ai/api/docs/openapi.json get /api/public/problems
openapi: 3.0.0
info:
  title: Ropes Public API
  version: 1.0.0
  description: >-
    Public API for Ropes. Authenticate using your API key in the x-api-key
    header.
servers:
  - url: https://api.ropes.ai
    description: Production server
  - url: http://localhost:3001
    description: Local development server
security: []
paths:
  /api/public/problems:
    get:
      tags:
        - Problems
      summary: Get Problems
      description: >-
        Get all technical assessments and video screens available to the
        authenticated organization, including status and a type discriminator.
        Optionally filter by integration source and external ID.
      parameters:
        - schema:
            type: string
            description: Filter by integration source. Must be provided with externalId.
          required: false
          description: Filter by integration source. Must be provided with externalId.
          name: integrationSource
          in: query
        - schema:
            type: string
            description: >-
              Filter by external ID from the ATS integration. Must be provided
              with integrationSource.
          required: false
          description: >-
            Filter by external ID from the ATS integration. Must be provided
            with integrationSource.
          name: externalId
          in: query
        - schema:
            allOf:
              - $ref: '#/components/schemas/ProblemType'
              - description: Restricts results to the selected problem type.
          required: false
          description: Restricts results to the selected problem type.
          name: type
          in: query
        - schema:
            type: string
            enum:
              - 'true'
              - 'false'
            description: Omits problems shared from the Ropes Test Bank when true.
          required: false
          description: Omits problems shared from the Ropes Test Bank when true.
          name: hideRopesTestBank
          in: query
      responses:
        '200':
          description: Successfully retrieved problems
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemsResponse'
        '400':
          description: >-
            Bad request - invalid type, or integrationSource and externalId are
            not provided together
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Unauthorized - Invalid or missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemErrorResponse'
        '500':
          description: Server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemErrorResponse'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    ProblemType:
      type: string
      enum:
        - technical-assessment
        - video-screening
      description: Problem type discriminator
    ProblemsResponse:
      type: array
      items:
        $ref: '#/components/schemas/Problem'
      description: List of problems
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
          description: Error message
        message:
          type: string
          description: Error message (alternative field)
    ProblemErrorResponse:
      type: object
      properties:
        error:
          type: string
          description: Error message
      required:
        - error
    Problem:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier for the problem
        title:
          type: string
          description: Display name/title of the problem
        status:
          type: string
          enum:
            - Ready
            - Creating
            - Editing
          description: Current status of the problem
        type:
          $ref: '#/components/schemas/ProblemType'
        integrationSource:
          type: string
          description: Integration source for the problem (e.g., jobdiva, bullhorn)
        externalId:
          type: string
          description: External ID from the ATS integration
        testMode:
          type: boolean
          description: >-
            True if this is a non-production problem created for API integration
            testing.
        isFromRopesTestBank:
          type: boolean
          description: True if this problem is from the shared Ropes Test Bank (read-only).
      required:
        - id
        - title
        - status
        - type
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````