Overview
Endpoint
Environment
URL
Authentication
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}`,
},
});Last updated