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

# Get Workspace Pull Request Details

> Returns enriched details for pull requests tracked by a workspace, including CI status and whether the code host will currently accept a merge. Each entry carries either details or an error explaining why enrichment failed.



## OpenAPI

````yaml /openapi.json post /v1/workspaces/{workspaceId}/pull-requests/details
openapi: 3.1.0
info:
  title: Replica API
  version: 2.0.0
  description: >-
    The Replica API allows you to programmatically manage cloud workspaces for
    AI agents. Use this API to manage environments (the org-scoped primitive
    workspaces are created from — including variables, files, skills, MCPs, warm
    hooks, start hooks, and warm pools), create and manage replicas, send
    messages, manage chats, stream events, read connected repositories and
    repository sets, and configure automations.
servers:
  - url: https://api.tryreplicas.com
    description: Production API
security:
  - apiKey: []
tags:
  - name: Environments
    description: >-
      Manage environments — the primitive that workspaces are created from.
      Variables, files, skills, MCPs, warm-hooks, and warm-pools are all scoped
      to an environment. Every organization has a singleton Global environment
      whose values apply to every workspace. Personal environments are scoped to
      the authenticated user and can be standalone or source-backed by a team
      environment.
  - name: Repository
    description: >-
      Read repositories and repository sets connected to your organization.
      Repositories are the underlying GitHub-connection layer; bind them to an
      environment to use them in workspaces.
  - name: Replica
    description: Manage replicas (workspaces) for AI agents
  - name: Terminal
    description: Manage interactive terminal sessions in active workspaces
  - name: Preview
    description: Manage public preview URLs for workspace ports
  - name: Profile
    description: Read and update the authenticated user's profile
  - name: Credentials
    description: >-
      Manage coding-agent credentials for an organization or the authenticated
      user
  - name: Google Search Console
    description: >-
      Read Search Console properties, performance, sitemaps, and URL inspection
      results through a connected Google account
  - name: Slack
    description: Connect Slack identities and route threads to Replicas workspaces
  - name: Linear
    description: Connect Linear identities to Replicas accounts
  - name: Automation
    description: >-
      Create and manage automations that trigger replicas on a schedule or in
      response to events
  - name: Downloads
    description: Download Replicas applications
  - name: Analytics
    description: >-
      Read aggregated activity and usage metrics for your organization: compute
      minutes, workspaces created by source, and pull request throughput over a
      time range.
  - name: Presence
    description: >-
      Read and report ephemeral member presence: who is online, where they are
      (environment or workspace), and whether they are typing. Presence is
      backed by short-lived keys rather than the database and broadcast to other
      members over the events stream.
paths:
  /v1/workspaces/{workspaceId}/pull-requests/details:
    post:
      tags:
        - Replica
      summary: Get Workspace Pull Request Details
      description: >-
        Returns enriched details for pull requests tracked by a workspace,
        including CI status and whether the code host will currently accept a
        merge. Each entry carries either details or an error explaining why
        enrichment failed.
      operationId: getWorkspacePullRequestDetails
      parameters:
        - name: workspaceId
          in: path
          required: true
          schema:
            type: string
            format: uuid
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/WorkspacePullRequestDetailsRequest'
      responses:
        '200':
          description: Pull request details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WorkspacePullRequestDetailsResponse'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
        '500':
          $ref: '#/components/responses/InternalServerError'
components:
  schemas:
    WorkspacePullRequestDetailsRequest:
      type: object
      properties:
        prUrls:
          type: array
          items:
            type: string
            format: uri
          maxItems: 20
      required:
        - prUrls
    WorkspacePullRequestDetailsResponse:
      type: object
      properties:
        pullRequests:
          type: array
          items:
            type: object
            properties:
              url:
                type: string
                format: uri
              details:
                allOf:
                  - $ref: '#/components/schemas/PullRequestDetails'
                nullable: true
              error:
                type: string
                nullable: true
            required:
              - url
              - details
              - error
      required:
        - pullRequests
    PullRequestDetails:
      type: object
      properties:
        url:
          type: string
          format: uri
        repoName:
          type: string
        owner:
          type: string
        repo:
          type: string
        number:
          type: integer
        title:
          type: string
        state:
          type: string
          enum:
            - open
            - merged
            - closed
            - draft
        authorLogin:
          type: string
          nullable: true
        headBranch:
          type: string
        baseBranch:
          type: string
        mergeability:
          type: string
          enum:
            - mergeable
            - blocked
            - behind
            - conflicts
            - draft
            - unknown
          description: >-
            Whether the code host will currently accept a merge. Mirrors
            GitHub's mergeable_state and GitLab's detailed_merge_status, so it
            captures branch protection outcomes that state and ciStatus cannot:
            blocked means a rule such as a required review is unsatisfied,
            behind means the branch is out of date with its base, and unknown
            means the host has not finished computing mergeability.
        ciStatus:
          type: string
          enum:
            - success
            - failure
            - pending
            - none
        additions:
          type: integer
        deletions:
          type: integer
        changedFiles:
          type: integer
        commentCount:
          type: integer
        checks:
          $ref: '#/components/schemas/PullRequestChecksSummary'
        updatedAt:
          type: string
          format: date-time
      required:
        - url
        - repoName
        - owner
        - repo
        - number
        - title
        - state
        - authorLogin
        - headBranch
        - baseBranch
        - mergeability
        - ciStatus
        - additions
        - deletions
        - changedFiles
        - commentCount
        - checks
        - updatedAt
    Error:
      type: object
      properties:
        error:
          type: string
          description: Error message
        details:
          type:
            - string
            - 'null'
          description: Additional error details
      required:
        - error
    PullRequestChecksSummary:
      type: object
      description: >-
        Check counts across the pull request head commit, spanning both commit
        statuses and check runs.
      properties:
        total:
          type: integer
        passing:
          type: integer
        failing:
          type: integer
        pending:
          type: integer
      required:
        - total
        - passing
        - failing
        - pending
  responses:
    BadRequest:
      description: Bad request - Missing or invalid parameters
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Unauthorized:
      description: Unauthorized - Invalid or missing API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    NotFound:
      description: Resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    InternalServerError:
      description: Internal server error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      description: >-
        API key authentication. Obtain your API key from the Replicas dashboard
        under Organization → Settings → API Keys.

````