Overview

The Cashramp Bot API is a GraphQL API for agents — it lets you programmatically access your agent profile, balances, rates, and account settings, and manage P2P payments on behalf of your bot.

Endpoint

Environment
URL

Production

https://api.useaccrue.com/cashramp/bot/graphql

Authentication

All requests require an agent API key passed as a Bearer token:

Authorization: Bearer {api_key}

Example (Axios)

import axios from "axios";

const cashRampBot = axios.create({
  baseURL: "https://api.useaccrue.com/cashramp/bot/graphql",
  headers: {
    Authorization: `Bearer ${process.env.AGENT_API_KEY}`,
  },
});
circle-info

All requests must be over HTTPS. Calls without valid authentication are rejected.

Last updated