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

# Create remote runners remote runners

> Requires scopes: admin:org



## OpenAPI

````yaml /api-reference/openapi.json post /api/remote-runners
openapi: 3.1.0
info:
  title: EvalGate API
  version: 3.7.6
  description: EvalGate API. See docs/api-contract.md for stability commitments.
servers:
  - url: https://evalgate.com
    description: Production
  - url: http://localhost:3000
    description: Local
security: []
paths:
  /api/remote-runners:
    post:
      tags:
        - remote runners
      summary: Create remote runners remote runners
      description: 'Requires scopes: admin:org'
      operationId: post_remote_runners
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PostApiRemoteRunnersRequest'
      responses:
        '201':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/PostApiRemoteRunnersResponse201ApplicationJson
        '400':
          $ref: '#/components/responses/ValidationError'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '409':
          $ref: '#/components/responses/Conflict'
        '429':
          $ref: '#/components/responses/RateLimited'
        '500':
          $ref: '#/components/responses/InternalError'
      security:
        - bearerAuth:
            - admin:org
components:
  schemas:
    PostApiRemoteRunnersRequest:
      type: object
      properties:
        name:
          type: string
        capabilities:
          type: object
          properties:
            maxWallMillis:
              type: number
            supportsStreaming:
              type: boolean
            network:
              type: object
              properties:
                mode:
                  oneOf:
                    - type: string
                      enum:
                        - deny_all
                    - type: string
                      enum:
                        - https_allowlist
                allowlist:
                  type: array
                  items:
                    type: string
              additionalProperties: false
              required:
                - mode
            protocolVersion:
              type: string
              enum:
                - '1.0'
            executionKinds:
              type: array
              items:
                oneOf:
                  - type: string
                    enum:
                      - prompt
                  - type: string
                    enum:
                      - scorer
                  - type: string
                    enum:
                      - workflow
                  - type: string
                    enum:
                      - agent
                  - type: string
                    enum:
                      - tool
            runtimes:
              type: array
              items:
                type: string
            maxCpuMillis:
              type: number
            maxMemoryMb:
              type: number
            maxOutputBytes:
              type: number
            maxConcurrentJobs:
              type: number
            supportsCancellation:
              type: boolean
          additionalProperties: false
          required:
            - maxWallMillis
            - supportsStreaming
            - network
            - protocolVersion
            - executionKinds
            - runtimes
            - maxCpuMillis
            - maxMemoryMb
            - maxOutputBytes
            - maxConcurrentJobs
            - supportsCancellation
        runnerKey:
          type: string
      additionalProperties: false
      required:
        - name
        - capabilities
        - runnerKey
    PostApiRemoteRunnersResponse201ApplicationJson:
      type: object
      properties:
        runner:
          type: object
          properties:
            status:
              type: string
            id:
              type: string
            name:
              type: string
            createdAt:
              type: string
              format: date-time
            updatedAt:
              type: string
              format: date-time
            organizationId:
              $ref: '#/components/schemas/OrganizationId'
            createdBy:
              type: string
            revokedBy:
              oneOf:
                - type: 'null'
                - type: string
            revokedAt:
              oneOf:
                - type: 'null'
                - type: string
                  format: date-time
            capabilities:
              type: object
              properties:
                maxWallMillis:
                  type: number
                supportsStreaming:
                  type: boolean
                network:
                  type: object
                  properties:
                    mode:
                      oneOf:
                        - type: string
                          enum:
                            - deny_all
                        - type: string
                          enum:
                            - https_allowlist
                    allowlist:
                      type: array
                      items:
                        type: string
                  additionalProperties: false
                  required:
                    - mode
                    - allowlist
                protocolVersion:
                  type: string
                  enum:
                    - '1.0'
                executionKinds:
                  type: array
                  items:
                    oneOf:
                      - type: string
                        enum:
                          - prompt
                      - type: string
                        enum:
                          - scorer
                      - type: string
                        enum:
                          - workflow
                      - type: string
                        enum:
                          - agent
                      - type: string
                        enum:
                          - tool
                runtimes:
                  type: array
                  items:
                    type: string
                maxCpuMillis:
                  type: number
                maxMemoryMb:
                  type: number
                maxOutputBytes:
                  type: number
                maxConcurrentJobs:
                  type: number
                supportsCancellation:
                  type: boolean
              additionalProperties: false
              required:
                - maxWallMillis
                - supportsStreaming
                - network
                - protocolVersion
                - executionKinds
                - runtimes
                - maxCpuMillis
                - maxMemoryMb
                - maxOutputBytes
                - maxConcurrentJobs
                - supportsCancellation
            runnerKey:
              type: string
            protocolVersion:
              type: string
            maxConcurrentJobs:
              type: number
            capabilitiesHash:
              type: string
            credentialKeyId:
              type: string
            activeJobCount:
              type: number
            lastHeartbeatAt:
              oneOf:
                - type: 'null'
                - type: string
                  format: date-time
            lastSeenAddressHash:
              oneOf:
                - type: 'null'
                - type: string
            revocationReason:
              oneOf:
                - type: 'null'
                - type: string
          additionalProperties: false
          required:
            - status
            - id
            - name
            - createdAt
            - updatedAt
            - organizationId
            - createdBy
            - revokedBy
            - revokedAt
            - capabilities
            - runnerKey
            - protocolVersion
            - maxConcurrentJobs
            - capabilitiesHash
            - credentialKeyId
            - activeJobCount
            - lastHeartbeatAt
            - lastSeenAddressHash
            - revocationReason
        bootstrapToken:
          type: string
        bootstrapTokenShownOnce:
          type: boolean
          enum:
            - true
      additionalProperties: false
      required:
        - runner
        - bootstrapToken
        - bootstrapTokenShownOnce
    OrganizationId:
      type: string
      format: uuid
    ApiError:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              enum:
                - UNAUTHORIZED
                - FORBIDDEN
                - NOT_FOUND
                - VALIDATION_ERROR
                - RATE_LIMITED
                - CONFLICT
                - INTERNAL_ERROR
                - SERVICE_UNAVAILABLE
                - QUOTA_EXCEEDED
                - NO_ORG_MEMBERSHIP
                - CROSS_ORG_REFERENCE
                - INCOMPLETE
                - MALFORMED
            message:
              type: string
            details: {}
            requestId:
              type: string
              format: uuid
          required:
            - code
            - message
      required:
        - error
  responses:
    ValidationError:
      description: Validation error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    Unauthorized:
      description: Unauthorized
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    Forbidden:
      description: Forbidden
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    NotFound:
      description: Resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    Conflict:
      description: Conflict
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    RateLimited:
      description: Rate limit exceeded
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    InternalError:
      description: Internal server error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key or Session Token

````