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

# Get source details

> Get configuration schema and details for a specific PyAirbyte source connector.



## OpenAPI

````yaml get /api/airbyte/sources/{source_name}
openapi: 3.1.0
info:
  title: Nx1 AI API
  description: |

    AI API for Nx1 Data Platform Management and Automated Data Tasks.

    Authentication is required via PSK in Authorization header.

    Default PSK is | [ask a friend] |
  version: 0.10.2
servers: []
security: []
paths:
  /api/airbyte/sources/{source_name}:
    get:
      tags:
        - PyAirbyte ingestion
      summary: Get source details
      description: >-
        Get configuration schema and details for a specific PyAirbyte source
        connector.
      operationId: get_source_api_airbyte_sources__source_name__get
      parameters:
        - name: source_name
          in: path
          required: true
          schema:
            type: string
            description: PyAirbyte source identifier.
            title: Source Name
          description: PyAirbyte source identifier.
      responses:
        '200':
          description: Source connector details.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AirbyteSourceInfo'
        '404':
          description: Source not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - OAuth2AuthorizationCodeBearer: []
        - APIKeyHeader: []
components:
  schemas:
    AirbyteSourceInfo:
      properties:
        name:
          type: string
          title: Name
          description: Source identifier. For example, `source-github`.
        package_name:
          type: string
          title: Package Name
          description: PyPI package name. For example, `airbyte-source-github`.
        version:
          anyOf:
            - type: string
            - type: 'null'
          title: Version
          description: >-
            Pinned PyPI package version. For example, `2.3.3`. If `None`, the
            latest available version applies.
        display_name:
          type: string
          title: Display Name
          description: Human-readable source name.
        category:
          type: string
          title: Category
          description: Category grouping. For example, `Engineering` or `CRM`.
        description:
          type: string
          title: Description
          description: Brief description of the source.
          default: ''
        config_fields:
          items:
            $ref: '#/components/schemas/AirbyteSourceConfigField'
          type: array
          title: Config Fields
          description: Configuration fields required by this source.
        config_template:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Config Template
          description: >-
            Template mapping flat form values to the nested config shape the
            connector expects. Uses {{field_name}} placeholders. If `None`, the
            connector receives the flat config as-is.
      type: object
      required:
        - name
        - package_name
        - display_name
        - category
      title: AirbyteSourceInfo
      description: Metadata for a single available PyAirbyte source connector.
    ErrorResponse:
      properties:
        error:
          type: string
          title: Error
          description: A brief description of the error that occurred.
        code:
          type: integer
          title: Code
          description: The HTTP status code associated with the error.
          default: 500
      type: object
      required:
        - error
      title: ErrorResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    AirbyteSourceConfigField:
      properties:
        name:
          type: string
          title: Name
          description: Field name used in the source config dict.
        title:
          type: string
          title: Title
          description: Human-readable label for the field.
        type:
          type: string
          title: Type
          description: >-
            Data type of the field. For example, `string`, `integer`, or
            `boolean`.
          default: string
        required:
          type: boolean
          title: Required
          description: Indicates whether the field is mandatory.
          default: true
        secret:
          type: boolean
          title: Secret
          description: Whether the field contains sensitive data.
          default: false
        description:
          type: string
          title: Description
          description: Help text for the field.
          default: ''
      type: object
      required:
        - name
        - title
      title: AirbyteSourceConfigField
      description: Schema for a single configuration field of a PyAirbyte source.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    OAuth2AuthorizationCodeBearer:
      type: oauth2
      flows:
        authorizationCode:
          scopes: {}
          authorizationUrl: >-
            https://sso-rapid.rapid.nx1cloud.com/realms/rapid/protocol/openid-connect/auth
          tokenUrl: >-
            https://sso-rapid.rapid.nx1cloud.com/realms/rapid/protocol/openid-connect/token
    APIKeyHeader:
      type: apiKey
      in: header
      name: Authorization-PSK

````