Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.moneda.com/llms.txt

Use this file to discover all available pages before exploring further.

The Moneda REST API publishes a machine-readable OpenAPI 3.1 specification. You can use it to explore the API interactively, generate client libraries, or import endpoints into your favorite API tool.

Live specification

The OpenAPI spec is always up to date and available at:
https://api.moneda.com/v1/openapi.json

Swagger UI

For interactive exploration, open the Swagger UI in your browser:
https://api.moneda.com/v1/docs
From there you can browse every endpoint, see request and response schemas, and make test requests with your token.
Click the “Authorize” button in Swagger UI and paste your OAuth Bearer token to make authenticated requests directly from the browser.

Using with API tools

Postman

  1. Open Postman and click Import
  2. Enter the URL: https://api.moneda.com/v1/openapi.json
  3. Postman will create a collection with all 32 endpoints
  4. Set the Authorization header to Bearer <your-token> at the collection level

Insomnia

  1. Go to Application > Preferences > Data > Import Data
  2. Choose From URL and enter: https://api.moneda.com/v1/openapi.json
  3. All endpoints will be imported into a new workspace

Bruno

  1. Open Bruno and go to Collection > Import
  2. Select OpenAPI V3 and paste the spec URL
  3. Configure your Bearer token in the collection’s auth settings

Generating client SDKs

Use OpenAPI Generator to create a typed client in your language of choice:
npx @openapitools/openapi-generator-cli generate \
  -i https://api.moneda.com/v1/openapi.json \
  -g typescript-fetch \
  -o ./moneda-client
Generated clients handle request serialization, response parsing, and type checking automatically. You still need to provide your OAuth token for authentication.

What’s next?

API Overview

Learn the basics of the Moneda REST API.

API Endpoints

Browse all 32 endpoints with descriptions and scopes.

Authentication

Set up your OAuth token for API access.

CLI Tool

Use the Moneda CLI for quick command-line access.