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

# Get resource schema

> Get resource schema



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/runtime/v1/connectors/{connectorName}/resources/{resourceName}/schema
openapi: 3.0.0
info:
  title: Runflow Runtime API
  description: >-
    Programmatic surface for the Runflow platform — used by the SDK, the CLI,
    the execution engine, and any server-to-server caller. Authenticate with an
    `x-api-key` header (or `Authorization: Bearer ...`).
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.runflow.ai
    description: Production
  - url: http://localhost:3000
    description: Local development
security: []
tags: []
paths:
  /api/v1/runtime/v1/connectors/{connectorName}/resources/{resourceName}/schema:
    get:
      tags:
        - Runtime API - Connectors
      summary: Get resource schema
      description: Get resource schema
      operationId: RuntimeConnectorController_getResourceSchema
      parameters:
        - name: connectorName
          required: true
          in: path
          description: Connector name
          schema:
            type: string
        - name: resourceName
          required: true
          in: path
          description: Resource name
          schema:
            type: string
      responses:
        '200':
          description: JSON Schema of the resource input parameters.
        '401':
          description: Missing or invalid API key.
        '404':
          description: Connector or resource not found.
      security:
        - bearer: []
components: {}

````