Cloverly Account API

Retrieve the authenticated account record including the configured currency, default offset type preferences, and the public/private API key context. Useful for confirming which environment (sandbox vs production) and which key tier a client is operating under.

Cloverly Account API is one of 4 APIs that Cloverly publishes on the APIs.io network, described by a machine-readable OpenAPI specification.

This API exposes 1 machine-runnable capability that can be deployed as REST, MCP, or Agent Skill surfaces via Naftiko.

Tagged areas include Account, Carbon, and Climate. The published artifact set on APIs.io includes API documentation, an OpenAPI specification, and 1 Naftiko capability spec.

OpenAPI Specification

cloverly-account-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Cloverly Account API
  description: >
    Retrieve the authenticated account record — currency, default offset
    preferences, and the API key context (public vs private, sandbox vs
    production).
  version: '2019-03-beta'
  contact:
    name: Cloverly Support
    url: https://cloverly.com/contact
  license:
    name: Cloverly Terms of Service
    url: https://cloverly.com/terms-of-service
servers:
  - url: https://api.cloverly.com
    description: Production server
security:
  - BearerAuth: []
tags:
  - name: Account
    description: Authenticated account context
paths:
  /2019-03-beta/account:
    get:
      summary: Cloverly Retrieve Account
      description: Retrieve the account record associated with the supplied API key.
      operationId: retrieveAccount
      tags:
        - Account
      responses:
        '200':
          description: The account record.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Account'
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
  schemas:
    Account:
      type: object
      properties:
        slug:
          type: string
        name:
          type: string
        currency:
          type: string
          example: USD
        default_offset_slug:
          type: string
        environment:
          type: string
          enum: [sandbox, production]
        key_type:
          type: string
          enum: [public, private]
        created_at:
          type: string
          format: date-time