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

# Show Commission

> Show data for a commission.



## OpenAPI

````yaml GET /v1/commissions/{id}
openapi: 3.1.0
info:
  title: Reditus API - Commissions
  description: API specification for managing commissions in Reditus affiliate programs.
  version: 1.0.0
servers:
  - url: https://api.getreditus.com/api
security: []
paths:
  /v1/commissions/{id}:
    get:
      summary: Get Commission
      description: Show data for a commission.
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CommissionResponse'
      security:
        - BearerAuth: []
components:
  schemas:
    CommissionResponse:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/Commission'
    Commission:
      type: object
      properties:
        id:
          type: string
        type:
          type: string
        attributes:
          type: object
          properties:
            state:
              type: string
              description: 'Commission state: pending, rejected or paid'
            amount:
              type: integer
              description: Commission amount, in cents
            currency:
              type: string
              description: Three-letter ISO currency code of the amount
            partner_id:
              type: string
              description: ID of the partner the commission belongs to
            referral_id:
              type: string
              description: ID of the referral the commission originates from, if any
            reject_reason:
              type: string
              description: >-
                Reason the commission was rejected. Only present when state is
                rejected
            state_set_at:
              type: integer
            paid_at:
              type: integer
              description: Timestamp the commission was paid at, if paid
            created_at:
              type: integer
            updated_at:
              type: integer
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````