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

# Get S3 Connector

> Fetch a connector by its name — the functional id at this layer. Returns
metadata only (id / short_id / name); credentials are never echoed.



## OpenAPI

````yaml https://api.outerproduct.com/openapi.json get /v1/connectors/s3/{connector_name}
openapi: 3.1.0
info:
  title: OuterProduct API
  description: >-
    Public-facing REST API for OuterProduct model distillation, prediction, and
    explanation.
  version: 0.1.8
servers: []
security: []
paths:
  /v1/connectors/s3/{connector_name}:
    get:
      tags:
        - connector
      summary: Get S3 Connector
      description: |-
        Fetch a connector by its name — the functional id at this layer. Returns
        metadata only (id / short_id / name); credentials are never echoed.
      operationId: get_s3_connector_v1_connectors_s3__connector_name__get
      parameters:
        - name: connector_name
          in: path
          required: true
          schema:
            type: string
            title: Connector Name
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateS3ConnectorResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - BearerAuth: []
components:
  schemas:
    CreateS3ConnectorResponse:
      properties:
        id:
          $ref: '#/components/schemas/ID'
        short_id:
          type: string
          title: Short Id
        credential_name:
          type: string
          title: Credential Name
      type: object
      required:
        - id
        - short_id
        - credential_name
      title: CreateS3ConnectorResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ID:
      anyOf:
        - type: string
          format: uuid
        - type: string
    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:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API key or OAuth2/OIDC access token
      description: >-
        An API key or OAuth2/OIDC access token sent as `Authorization: Bearer
        <token>`.

````