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

# List Schema Subjects

> List schema subjects for the tenant with pagination.
Excludes internal subjects.
Optional: include_metadata=true to get latest version info in a single request.



## OpenAPI

````yaml /openapi/openapi.json get /schema-registry/subjects
openapi: 3.1.0
info:
  title: Streamkap REST API
  description: >-
    The Streamkap REST API allows you to programmatically manage your CDC
    pipelines, sources, destinations, transforms, and more.


    Authenticate using a bearer token obtained from the [Access
    Token](/api-reference/auth/access-token) endpoint with your API client
    credentials.
  contact:
    name: Streamkap Support
    url: https://streamkap.com/
    email: support@streamkap.com
  license:
    name: Proprietary
  version: 2.0.0
servers:
  - url: https://api.streamkap.com
    description: Production
security: []
tags:
  - name: Alerts
    description: Manage alert subscribers, preferences, and notification credentials.
  - name: Authentication
    description: Obtain and refresh access tokens, manage client credentials and roles.
  - name: Billing
    description: Retrieve usage metrics, summaries, and export billing data.
  - name: Consumer Groups
    description: List, inspect, and reset Kafka consumer group offsets.
  - name: Dashboard
    description: Retrieve organisation-level statistics and overview data.
  - name: Destinations
    description: Create, configure, and manage data destinations and their lifecycle.
  - name: Kafka Access
    description: Manage Kafka users and their access permissions.
  - name: Logs
    description: Query and summarise system logs.
  - name: Pipelines
    description: Create, configure, and manage CDC pipelines and their lifecycle.
  - name: Project Keys
    description: Manage project keys that bundle API credentials and optional Kafka access.
  - name: Schema Registry
    description: Browse schema subjects, versions, and retrieve schema definitions.
  - name: Services
    description: View and switch service metadata.
  - name: Sources
    description: >-
      Create, configure, and manage data sources, snapshots, and their
      lifecycle.
  - name: Tags
    description: Create, update, and manage resource tags for organisation.
  - name: Topics
    description: Browse topic details, statistics, configurations, metrics, and messages.
  - name: Transforms
    description: >-
      Create, deploy, and manage data transforms, unit tests, and implementation
      details.
paths:
  /schema-registry/subjects:
    get:
      tags:
        - Schema Registry
      summary: List Schema Subjects
      description: >-
        List schema subjects for the tenant with pagination.

        Excludes internal subjects.

        Optional: include_metadata=true to get latest version info in a single
        request.
      operationId: listSchemaSubjects
      parameters:
        - name: page
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            description: Page number (1-indexed)
            default: 1
            title: Page
          description: Page number (1-indexed)
        - name: page_size
          in: query
          required: false
          schema:
            type: integer
            maximum: 500
            minimum: 1
            description: Items per page
            default: 50
            title: Page Size
          description: Items per page
        - name: include_metadata
          in: query
          required: false
          schema:
            type: boolean
            description: Include latest version metadata for each subject
            default: true
            title: Include Metadata
          description: Include latest version metadata for each subject
        - name: search
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Search subjects by name (case-insensitive substring match)
            title: Search
          description: Search subjects by name (case-insensitive substring match)
        - name: schema_type
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by schema type (AVRO, JSON, PROTOBUF)
            title: Schema Type
          description: Filter by schema type (AVRO, JSON, PROTOBUF)
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SchemaSubjectsPaginatedRes'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - FronteggHTTPAuthentication: []
components:
  schemas:
    SchemaSubjectsPaginatedRes:
      properties:
        page:
          type: integer
          title: Page
          description: Current page number
        page_size:
          type: integer
          title: Page Size
          description: Items per page
        total:
          type: integer
          title: Total
          description: Total number of subjects
        result:
          anyOf:
            - items:
                type: string
              type: array
            - items:
                $ref: '#/components/schemas/SchemaSubjectListItem'
              type: array
          title: Result
          description: List of schema subjects
      additionalProperties: true
      type: object
      required:
        - page
        - page_size
        - total
        - result
      title: SchemaSubjectsPaginatedRes
      description: Paginated schema subjects list response.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    SchemaSubjectListItem:
      properties:
        subject:
          type: string
          title: Subject
          description: Schema subject name
        schema_type:
          type: string
          title: Schema Type
          description: Schema type (AVRO, JSON, PROTOBUF)
        latest_version:
          type: integer
          title: Latest Version
          description: Latest schema version
        latest_schema_id:
          type: integer
          title: Latest Schema Id
          description: Latest schema ID
      additionalProperties: true
      type: object
      required:
        - subject
        - schema_type
        - latest_version
        - latest_schema_id
      title: SchemaSubjectListItem
      description: Schema subject with metadata.
    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:
    FronteggHTTPAuthentication:
      type: http
      scheme: bearer

````