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

# render_metrics

> Run the render_metrics tool. Returns a clean, normalized JSON shape. Bring your own key — connect render first via POST /v1/connections.



## OpenAPI

````yaml /openapi.json post /v1/render_metrics
openapi: 3.1.0
info:
  title: fetchbean API
  version: v1
  description: >-
    One key for web search, page reads, weather, social data, and raw provider
    access.
servers:
  - url: https://api.fetchbean.com
security:
  - bearerAuth: []
paths:
  /v1/render_metrics:
    post:
      tags:
        - Tools
      summary: render_metrics
      description: >-
        Run the render_metrics tool. Returns a clean, normalized JSON shape.
        Bring your own key — connect render first via POST /v1/connections.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              additionalProperties: true
              type: object
              required:
                - metric
              properties:
                metric:
                  anyOf:
                    - const: cpu
                      type: string
                    - const: cpu-limit
                      type: string
                    - const: cpu-target
                      type: string
                    - const: memory
                      type: string
                    - const: memory-limit
                      type: string
                    - const: memory-target
                      type: string
                    - const: http-requests
                      type: string
                    - const: http-latency
                      type: string
                    - const: bandwidth
                      type: string
                    - const: bandwidth-sources
                      type: string
                    - const: disk-usage
                      type: string
                    - const: disk-capacity
                      type: string
                    - const: instance-count
                      type: string
                    - const: active-connections
                      type: string
                    - const: replication-lag
                      type: string
                    - const: task-runs-queued
                      type: string
                    - const: task-runs-completed
                      type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
        '400':
          description: Validation error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Authentication error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '402':
          description: Insufficient credits
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            type:
              type: string
            code:
              type: string
            message:
              type: string
            retryable:
              type: boolean
            billable:
              type: boolean
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Your fetchbean API key (fb_…).

````