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

# Material details



## OpenAPI

````yaml /api-reference/partners/api.json get /v1/materials/{id}
openapi: 3.1.0
info:
  title: Laravel
  version: 0.0.1
servers:
  - url: https://api.opx.co/partners
    description: Production
security: []
paths:
  /v1/materials/{id}:
    get:
      tags:
        - Materials
      summary: Material details
      operationId: partners.materials.show
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: integer
      responses:
        '200':
          description: '`MaterialResource`'
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/MaterialResource'
                required:
                  - data
components:
  schemas:
    MaterialResource:
      type: object
      properties:
        id:
          type: integer
        name:
          type: string
        brand_name:
          type: string
      required:
        - id
        - name
        - brand_name
      title: MaterialResource

````