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

# Get fabric details

> Retrieve details for a specific fabric by its ID



## OpenAPI

````yaml get /api/orchestration/fabric/{fabricId}
openapi: 3.0.3
info:
  title: Prophecy API - Fabrics
  description: API for managing Prophecy fabrics
  version: 1.0.0
servers: []
security: []
paths:
  /api/orchestration/fabric/{fabricId}:
    parameters:
      - name: fabricId
        in: path
        description: The unique ID of the fabric
        required: true
        schema:
          type: string
    get:
      tags:
        - Fabrics
      summary: Get fabric details
      description: Retrieve details for a specific fabric by its ID
      operationId: getFabricById
      parameters:
        - $ref: '#/components/parameters/X-AUTH-TOKEN'
      responses:
        '200':
          description: Fabric resource found
          content:
            application/json:
              schema:
                type: object
                required:
                  - success
                  - data
                properties:
                  success:
                    type: boolean
                    description: Indicates the request was successful.
                    enum:
                      - true
                  data:
                    type: object
                    properties:
                      fabricID:
                        type: string
                        description: The unique identifier for the fabric.
                      name:
                        type: string
                        description: The name of the fabric.
                      teamID:
                        type: string
                        description: >-
                          The unique identifier of the team that owns the
                          fabric.
                    description: Response data containing fabric details.
              example:
                success: true
                data:
                  fabricID: '10740'
                  name: API_fabric_test
                  teamID: '1200'
components:
  parameters:
    X-AUTH-TOKEN:
      name: X-AUTH-TOKEN
      in: header
      description: Prophecy authentication token. Required for all API requests.
      required: true
      schema:
        type: string

````