Raygun · Capability

Raygun Public API — Customers

Raygun Public API — Customers business capability. 2 operations against the Raygun v3 REST API.

Raygun Public API — Customers is a Naftiko capability published by Raygun, one of 12 capabilities the APIs.io network indexes for this provider. It bundles 2 operations across the GET method rooted at /v3/applications/{…}/customers.

The capability includes 2 read-only operations. Lead operation: List Customers for an Application. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Raygun, Customers, and Observability.

Run with Naftiko RaygunCustomersObservability

What You Can Do

GET
List customers — List Customers for an Application
/v3/applications/{application-identifier}/customers
GET
Get customer by identifier — Get Customer by Identifier
/v3/applications/{application-identifier}/customers/{customer-identifier}

MCP Tools

raygun-list-customers

List Customers for an Application

read-only idempotent
raygun-get-customer-by-identifier

Get Customer by Identifier

read-only idempotent

Capability Spec

customers-customers.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: "Raygun Public API \u2014 Customers"
  description: "Raygun Public API \u2014 Customers business capability. 2 operations against the Raygun v3 REST API."
  tags:
  - Raygun
  - Customers
  - Observability
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
- namespace: env
  keys:
    RAYGUN_PERSONAL_ACCESS_TOKEN: RAYGUN_PERSONAL_ACCESS_TOKEN
capability:
  consumes:
  - type: http
    namespace: customers-customers
    baseUri: https://api.raygun.com/v3
    description: "Raygun Public API \u2014 Customers. Self-contained Naftiko capability."
    resources:
    - name: applications-application-identifier-customers
      path: /applications/{application-identifier}/customers
      operations:
      - name: list-customers
        method: GET
        description: List Customers for an Application
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: null
          in: query
          type: string
          description: ''
          required: false
        - name: null
          in: query
          type: string
          description: ''
          required: false
        - name: orderby
          in: query
          type: array
          description: Order items by property values
          required: false
    - name: applications-application-identifier-customers-customer-identifier
      path: /applications/{application-identifier}/customers/{customer-identifier}
      operations:
      - name: get-customer-by-identifier
        method: GET
        description: Get Customer by Identifier
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters: []
    authentication:
      type: bearer
      value: '{{env.RAYGUN_PERSONAL_ACCESS_TOKEN}}'
      placement: header
  exposes:
  - type: rest
    namespace: customers-customers-rest
    port: 8080
    description: REST adapter for Raygun Customers.
    resources:
    - path: /v3/applications/{application-identifier}/customers
      name: applications-application-identifier-customers
      description: REST surface for applications-application-identifier-customers.
      operations:
      - method: GET
        name: list-customers
        description: List Customers for an Application
        call: customers-customers.list-customers
        with:
          null: rest.query.None
          orderby: rest.query.orderby
        outputParameters:
        - type: object
          mapping: $.
    - path: /v3/applications/{application-identifier}/customers/{customer-identifier}
      name: applications-application-identifier-customers-customer-identifier
      description: REST surface for applications-application-identifier-customers-customer-identifier.
      operations:
      - method: GET
        name: get-customer-by-identifier
        description: Get Customer by Identifier
        call: customers-customers.get-customer-by-identifier
        with: {}
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: customers-customers-mcp
    port: 9090
    transport: http
    description: MCP adapter for Raygun Customers.
    tools:
    - name: raygun-list-customers
      description: List Customers for an Application
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: customers-customers.list-customers
      with:
        null: tools.None
        orderby: tools.orderby
      outputParameters:
      - type: object
        mapping: $.
    - name: raygun-get-customer-by-identifier
      description: Get Customer by Identifier
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: customers-customers.get-customer-by-identifier
      with: {}
      outputParameters:
      - type: object
        mapping: $.