Cvent · Capability

Cvent REST APIs — Usage

Cvent REST APIs — Usage. 2 operations. Lead operation: Get Current Usage. Self-contained Naftiko capability covering one business surface.

Cvent REST APIs — Usage is a Naftiko capability published by Cvent, one of 52 capabilities the APIs.io network indexes for this provider. It bundles 2 operations across the GET method rooted at /v1/usage.

The capability includes 2 read-only operations. Lead operation: Get Current Usage. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Cvent and Usage.

Run with Naftiko CventUsage

What You Can Do

GET
Getusage — Get Current Usage
/v1/usage
GET
Getusagetier — Get Current Usage Tier
/v1/usage/tier

MCP Tools

cvent-getusage

Get Current Usage

read-only idempotent
cvent-getusagetier

Get Current Usage Tier

read-only idempotent

Capability Spec

rest-usage.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Cvent REST APIs — Usage
  description: 'Cvent REST APIs — Usage. 2 operations. Lead operation: Get Current Usage. Self-contained Naftiko capability covering one business surface.'
  tags:
  - Cvent
  - Usage
  created: '2026-05-20'
  modified: '2026-05-20'
binds:
- namespace: env
  keys:
    CVENT_API_KEY: CVENT_API_KEY
capability:
  consumes:
  - type: http
    namespace: rest-usage
    baseUri: https://api-platform.cvent.com/ea
    description: Cvent REST APIs — Usage business capability. Self-contained, no shared references.
    resources:
    - name: usage
      path: /usage
      operations:
      - name: getusage
        method: GET
        description: Get Current Usage
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: before
          in: query
          type: string
          description: 'Returns usage for the seven days before (inclusive) the date provided. If after is also provided, then

            only the dates between (inclusive) those dates are returned. before must be a valid ISO8601 date '
        - name: after
          in: query
          type: string
          description: 'Returns usage for the seven days after (inclusive) the date provided. If before is also provided, then

            only the dates between (inclusive) those dates are returned. after must be a valid ISO8601 date s'
    - name: usage-tier
      path: /usage/tier
      operations:
      - name: getusagetier
        method: GET
        description: Get Current Usage Tier
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters: []
  exposes:
  - type: rest
    namespace: rest-usage-rest
    port: 8080
    description: REST adapter for Cvent REST APIs — Usage. One resource per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/usage
      name: usage
      description: REST surface for usage.
      operations:
      - method: GET
        name: getusage
        description: Get Current Usage
        call: rest-usage.getusage
        with:
          before: rest.before
          after: rest.after
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/usage/tier
      name: usage-tier
      description: REST surface for usage-tier.
      operations:
      - method: GET
        name: getusagetier
        description: Get Current Usage Tier
        call: rest-usage.getusagetier
        with: {}
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: rest-usage-mcp
    port: 9090
    transport: http
    description: MCP adapter for Cvent REST APIs — Usage. One tool per consumed operation, routed inline through this capability's consumes block.
    tools:
    - name: cvent-getusage
      description: Get Current Usage
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-usage.getusage
      with:
        before: tools.before
        after: tools.after
      outputParameters:
      - type: object
        mapping: $.
    - name: cvent-getusagetier
      description: Get Current Usage Tier
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-usage.getusagetier
      with: {}
      outputParameters:
      - type: object
        mapping: $.