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

# Get metric slice links for an action definition



## OpenAPI

````yaml https://api.arklow.io/swagger/ui/json get /v1/orgs/{org_id}/actions/{id}/metrics
openapi: 3.1.0
info:
  title: Arklow
  description: Arklow's API
  version: 0.1.0
servers:
  - url: https://api.arklow.io
    description: Production
  - url: http://localhost:3123
    description: Local development
security:
  - apiKey: []
tags:
  - name: actions
  - name: api_keys
  - name: billing
  - name: capacity-domains
  - name: credentials
  - name: destinations
  - name: invites
  - name: members
  - name: metrics
  - name: notifications
  - name: orgs
  - name: proposals
  - name: rules
  - name: scale-targets
  - name: sources
  - name: users
  - name: ingress
externalDocs:
  url: https://api.arklow.io/swagger/ui
paths:
  /v1/orgs/{org_id}/actions/{id}/metrics:
    get:
      tags:
        - actions
      summary: Get metric slice links for an action definition
      operationId: get_v1_orgs_by_org_id_actions_by_id_metrics
      parameters:
        - schema:
            type: string
            pattern: ^[0-9]+$
          in: path
          name: org_id
          required: true
        - schema:
            type: string
            pattern: ^[0-9]+$
          in: path
          name: id
          required: true
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                required:
                  - data
                  - errors
                properties:
                  data:
                    anyOf:
                      - type: object
                        required:
                          - action
                          - slices
                        properties:
                          action:
                            type: object
                            required:
                              - id
                              - variant
                              - version
                            properties:
                              id:
                                type: string
                              variant:
                                type: string
                              version:
                                type: integer
                          slices:
                            type: array
                            items:
                              type: object
                              required:
                                - tag_dimensions_key
                                - links
                              properties:
                                tag_dimensions_key:
                                  type: string
                                links:
                                  type: array
                                  items:
                                    type: object
                                    required:
                                      - dispatch_lane
                                      - series_id
                                      - confidence
                                      - lag_ms
                                      - sample_size
                                      - tail_sensitive
                                      - pinned
                                      - provenance
                                      - state
                                      - direction
                                      - hit_count
                                      - miss_count
                                      - last_proof_at
                                      - updated_at
                                    properties:
                                      dispatch_lane:
                                        type: string
                                      series_id:
                                        type: string
                                      metric_name:
                                        type: string
                                      metric_kind:
                                        type: string
                                      temporality:
                                        type: string
                                      unit:
                                        type: string
                                      source:
                                        type: string
                                      arklow_query_id:
                                        type: string
                                      arklow_source_id:
                                        type: string
                                      driver_metric:
                                        type: string
                                      confidence:
                                        type: number
                                      lag_ms:
                                        type: number
                                      sample_size:
                                        type: number
                                      tail_sensitive:
                                        type: number
                                      pinned:
                                        type: number
                                      provenance:
                                        type: string
                                      state:
                                        anyOf:
                                          - type: string
                                            enum:
                                              - candidate
                                          - type: string
                                            enum:
                                              - active
                                          - type: string
                                            enum:
                                              - shadow
                                          - type: string
                                            enum:
                                              - proven
                                      direction:
                                        type: integer
                                      hit_count:
                                        type: integer
                                      miss_count:
                                        type: integer
                                      last_proof_at:
                                        anyOf:
                                          - type: 'null'
                                          - type: string
                                            format: date-time
                                      updated_at:
                                        type: string
                                        format: date-time
                      - type: 'null'
                  errors:
                    anyOf:
                      - type: array
                        items:
                          type: object
                          required:
                            - code
                            - message
                          properties:
                            code:
                              type: string
                            message:
                              type: string
                      - type: 'null'
components:
  securitySchemes:
    apiKey:
      type: apiKey
      name: x-arklow-auth
      in: header

````