Skip to content
Last updated

Getting Started

This section gets you from “I have credentials” to “I can make reliable API calls” and covers the patterns you’ll use every day: auth, first request, filtering, pagination, PATCH updates, and error handling.

  1. API Overview — What the API is for, how resources fit together, and how to think about IDs
  2. Authentication — Set up OAuth 2.0 and get an access token
  3. Quickstart — Make your first API call end-to-end
  4. Error Handling — Know what to do when a request fails

Before you begin

  • You’ll need an OAuth 2.0 client issued by MVMNT (client credentials and the right scopes for your integration).
  • Plan for retries, pagination, and partial failures from day one—those are normal in production integrations.

Common patterns you’ll use next

  • Filtering — Query resources with flexible filter criteria
  • Pagination — Iterate through large result sets without missing or duplicating records
  • Partial Updates — Update specific fields with PATCH
  • Client Keys — Bidirectional lookups when your system has its own identifiers
  • Soft Deletes — Understand delete behavior so you don’t treat missing records as data loss

Pages in this section (index)

Coming soon

  • Rate limits

If you’re new to the API, start with the API Overview and follow the recommended order above.