Raygun · Capability

Raygun Public API — Pages

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

Raygun Public API — Pages 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/{…}/pages.

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

Tagged areas include Raygun, Pages, and Observability.

Run with Naftiko RaygunPagesObservability

What You Can Do

GET
List pages — List Pages for an Application
/v3/applications/{application-identifier}/pages
GET
Get page — Get Page by Identifier
/v3/applications/{application-identifier}/pages/{page-identifier}

MCP Tools

raygun-list-pages

List Pages for an Application

read-only idempotent
raygun-get-page

Get Page by Identifier

read-only idempotent

Capability Spec

pages-pages.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: "Raygun Public API \u2014 Pages"
  description: "Raygun Public API \u2014 Pages business capability. 2 operations against the Raygun v3 REST API."
  tags:
  - Raygun
  - Pages
  - 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: pages-pages
    baseUri: https://api.raygun.com/v3
    description: "Raygun Public API \u2014 Pages. Self-contained Naftiko capability."
    resources:
    - name: applications-application-identifier-pages
      path: /applications/{application-identifier}/pages
      operations:
      - name: list-pages
        method: GET
        description: List Pages 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-pages-page-identifier
      path: /applications/{application-identifier}/pages/{page-identifier}
      operations:
      - name: get-page
        method: GET
        description: Get Page 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: pages-pages-rest
    port: 8080
    description: REST adapter for Raygun Pages.
    resources:
    - path: /v3/applications/{application-identifier}/pages
      name: applications-application-identifier-pages
      description: REST surface for applications-application-identifier-pages.
      operations:
      - method: GET
        name: list-pages
        description: List Pages for an Application
        call: pages-pages.list-pages
        with:
          null: rest.query.None
          orderby: rest.query.orderby
        outputParameters:
        - type: object
          mapping: $.
    - path: /v3/applications/{application-identifier}/pages/{page-identifier}
      name: applications-application-identifier-pages-page-identifier
      description: REST surface for applications-application-identifier-pages-page-identifier.
      operations:
      - method: GET
        name: get-page
        description: Get Page by Identifier
        call: pages-pages.get-page
        with: {}
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: pages-pages-mcp
    port: 9090
    transport: http
    description: MCP adapter for Raygun Pages.
    tools:
    - name: raygun-list-pages
      description: List Pages for an Application
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: pages-pages.list-pages
      with:
        null: tools.None
        orderby: tools.orderby
      outputParameters:
      - type: object
        mapping: $.
    - name: raygun-get-page
      description: Get Page by Identifier
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: pages-pages.get-page
      with: {}
      outputParameters:
      - type: object
        mapping: $.