API
GoGlobal API Reference: Authentication, Orders, and Publishing
Complete GoGlobal REST API reference for authentication, account info, order management, post publishing, and pricing, with curl examples and response notes.
Work through the sections below to complete setup and checks, then use the top search to jump into related help docs when needed.
Authentication
All endpoints require a Bearer token in the Authorization header. Use the API key you created in the API Platform page. The base URL is https://your-domain.com. Every request must include: Authorization: Bearer sk_live_your_key_here

GET Endpoints
GET endpoints retrieve data from your GoGlobal account. They do not create or modify any resources.
GET Endpoints
Complete the setup step by step
GET /api/v1/me — Get current user info. Returns your account profile, email, credit balance, and subscription tier.
GET /api/v1/balance — Get provider balance. Returns the current credit balance available for ordering.
GET /api/v1/orders — List your orders. Returns a paginated list of all orders you have placed, including status, cost, and subreddit.
GET /api/v1/orders/pricing — Get pricing config. Returns the current credit cost for each order type and account type.
- 1GET /api/v1/me — Get current user info. Returns your account profile, email, credit balance, and subscription tier.
- 2GET /api/v1/balance — Get provider balance. Returns the current credit balance available for ordering.
- 3GET /api/v1/orders — List your orders. Returns a paginated list of all orders you have placed, including status, cost, and subreddit.
- 4GET /api/v1/orders/pricing — Get pricing config. Returns the current credit cost for each order type and account type.
- 5GET /api/v1/orders/:id — Get a single order. Returns the full details of a specific order by its internal ID.
Use GET /api/v1/orders/pricing before building your ordering workflow to ensure your credit calculations are based on the latest pricing.
POST Endpoints
POST endpoints create new resources or trigger actions. They consume credits when orders are successfully placed.
POST Endpoints
Complete the setup step by step
POST /api/v1/orders — Create a new order. Send a JSON body with the order type, subreddit, content, and account type. Returns the new order ID and estimated completion time.
POST /api/v1/orders/:id/cancel — Cancel an order. Only orders in 'Processing' status can be cancelled. Credits are refunded immediately upon successful cancellation.
POST /api/v1/posts/publish — Publish a Reddit post directly via your connected Reddit account (not via a managed account). Requires a connected Reddit OAuth account.
POST /api/v1/comments/publish — Publish Reddit comments directly via your connected Reddit account. Accepts a post URL and comment content. Supports Markdown formatting.
- 1POST /api/v1/orders — Create a new order. Send a JSON body with the order type, subreddit, content, and account type. Returns the new order ID and estimated completion time.
- 2POST /api/v1/orders/:id/cancel — Cancel an order. Only orders in 'Processing' status can be cancelled. Credits are refunded immediately upon successful cancellation.
- 3POST /api/v1/posts/publish — Publish a Reddit post directly via your connected Reddit account (not via a managed account). Requires a connected Reddit OAuth account.
- 4POST /api/v1/comments/publish — Publish Reddit comments directly via your connected Reddit account. Accepts a post URL and comment content. Supports Markdown formatting.
Pricing and Subscription Plans
Credits are the currency used for all GoGlobal API operations. 1 credit = $0.10 USD. Credits are deducted atomically on each successful API call and automatically refunded if an external provider fails.

- 1Reddit Agent Solo — $69/mo, 700 credits/month. Supports up to 2 projects. Includes Reddit AI Agent core workflows, 60 keyword monitors, and 50 scheduled tasks.
- 2Reddit Agent Pro — $199/mo, 2,000 credits/month. Supports up to 5 projects. Includes Reddit AI Agent with all skills and 60 keyword monitors.
- 3Enterprise — Custom pricing, 18,000+ credits/month. Unlimited projects, Priority API access, and dedicated support.
- 4Failed orders auto-refund credits — if a GoGlobal-managed account fails to execute your order within 48 hours, the full credit cost is automatically returned to your balance.
Check the Discount Policy section in the API Docs sidebar for volume discount tiers. Purchasing credit add-ons in bulk reduces the effective per-credit cost significantly.