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

# List coach rubrics

> Reference endpoint: lists the team's enabled rubrics. Items provide the key → name mapping for the `evaluation_answers` keys returned on coach calls. Requires the `read:coach` permission.



## OpenAPI

````yaml /api-reference/openapi.json get /api/coach/rubrics
openapi: 3.1.0
info:
  title: Avoca Enterprise API
  description: >-
    Read-only programmatic access to Avoca data: calls and recordings,
    transcripts, leads, coach evaluations, Simple Scheduler sessions and
    analytics, outbound texting activity, and enterprise support tickets.
  version: 1.4.0
servers:
  - url: https://enterprise-api.avoca.ai
security:
  - bearerAuth: []
tags:
  - name: Calls
    description: Call records, recordings, transcripts, and pre-call transfers
  - name: Leads
    description: Unified leads (v0) and the canonical leads feed (v1)
  - name: Teams
    description: Teams accessible to the API key
  - name: Coach
    description: Coach (QA) call evaluations and rubrics
  - name: Scheduler Analytics (v0)
    description: Simple Scheduler analytics — legacy flat endpoints
  - name: Sessions & Bookings
    description: v1 scheduling-widget sessions and completed bookings
  - name: Analytics (v1)
    description: v1 funnel, UTM, service-area, and issue-type analytics
  - name: Outbound Texting
    description: Campaign text and subscription-event feeds for BI ingestion
  - name: Support Tickets
    description: Customer-safe enterprise support-ticket feed
paths:
  /api/coach/rubrics:
    get:
      tags:
        - Coach
      summary: List coach rubrics
      description: >-
        Reference endpoint: lists the team's enabled rubrics. Items provide the
        key → name mapping for the `evaluation_answers` keys returned on coach
        calls. Requires the `read:coach` permission.
      operationId: listCoachRubrics
      parameters:
        - $ref: '#/components/parameters/xTeamId'
      responses:
        '200':
          description: Enabled rubrics with item key/name pairs
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/CoachRubric'
              example:
                data:
                  - id: 10
                    title: Inbound HVAC
                    team_id: 1
                    items:
                      - key: item_abc123
                        name: Did the team member greet the customer?
                      - key: item_def456
                        name: Did the team member confirm the address?
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
components:
  parameters:
    xTeamId:
      name: x-team-id
      in: header
      description: >-
        Target team ID. Required for multi-team (`enterprise_all_teams` /
        `portfolio_all_teams`) keys on v0 endpoints; single-team keys are locked
        to their team and omit it.
      schema:
        type: integer
  schemas:
    CoachRubric:
      type: object
      description: >-
        An enabled rubric for the target team. Items are deduplicated by key and
        sorted by name.
      properties:
        id:
          type: integer
        title:
          type:
            - string
            - 'null'
        team_id:
          type: integer
        items:
          type: array
          items:
            $ref: '#/components/schemas/CoachRubricItem'
      required:
        - id
        - title
        - team_id
        - items
    CoachRubricItem:
      type: object
      properties:
        key:
          type: string
          description: Stable key used in `evaluation_answers`
        name:
          type: string
          description: Customer-facing rubric item text
      required:
        - key
        - name
    Error:
      type: object
      properties:
        error:
          type: string
          description: Error type
        message:
          type: string
          description: Human-readable description (newer endpoints)
      required:
        - error
  responses:
    BadRequest:
      description: Invalid parameters
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Unauthorized:
      description: Missing or invalid API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Forbidden:
      description: API key lacks the required permission or team access
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key in the format `avoca_<64 hex characters>`

````