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.

API8 min read4 sections

Work through the sections below to complete setup and checks, then use the top search to jump into related help docs when needed.

1

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

API Reference section showing a curl example command and a table of 9 endpoints with Method (GET/POST), Endpoint path, and Description columns
The API Reference table: 5 GET endpoints for reading data and 4 POST endpoints for creating orders and publishing content. All require the Authorization: Bearer header.Click the image to view full size
2

GET Endpoints

GET endpoints retrieve data from your GoGlobal account. They do not create or modify any resources.

GoGlobal / Help workflow
GoGlobal API Reference: Authentication, Orders, and Publishing
1Analyze
2Configure
3Execute
4Check

GET Endpoints

Complete the setup step by step

4 steps
1

GET /api/v1/me — Get current user info. Returns your account profile, email, credit balance, and subscription tier.

2

GET /api/v1/balance — Get provider balance. Returns the current credit balance available for ordering.

3

GET /api/v1/orders — List your orders. Returns a paginated list of all orders you have placed, including status, cost, and subreddit.

4

GET /api/v1/orders/pricing — Get pricing config. Returns the current credit cost for each order type and account type.

Workflow diagram: when product screenshots are unavailable, use this flow to follow the setup steps.
  1. 1GET /api/v1/me — Get current user info. Returns your account profile, email, credit balance, and subscription tier.
  2. 2GET /api/v1/balance — Get provider balance. Returns the current credit balance available for ordering.
  3. 3GET /api/v1/orders — List your orders. Returns a paginated list of all orders you have placed, including status, cost, and subreddit.
  4. 4GET /api/v1/orders/pricing — Get pricing config. Returns the current credit cost for each order type and account type.
  5. 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.

3

POST Endpoints

POST endpoints create new resources or trigger actions. They consume credits when orders are successfully placed.

GoGlobal / Help workflow
GoGlobal API Reference: Authentication, Orders, and Publishing
1Analyze
2Configure
3Execute
4Check

POST Endpoints

Complete the setup step by step

4 steps
1

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.

2

POST /api/v1/orders/:id/cancel — Cancel an order. Only orders in 'Processing' status can be cancelled. Credits are refunded immediately upon successful cancellation.

3

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.

4

POST /api/v1/comments/publish — Publish Reddit comments directly via your connected Reddit account. Accepts a post URL and comment content. Supports Markdown formatting.

Workflow diagram: when product screenshots are unavailable, use this flow to follow the setup steps.
  1. 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.
  2. 2POST /api/v1/orders/:id/cancel — Cancel an order. Only orders in 'Processing' status can be cancelled. Credits are refunded immediately upon successful cancellation.
  3. 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.
  4. 4POST /api/v1/comments/publish — Publish Reddit comments directly via your connected Reddit account. Accepts a post URL and comment content. Supports Markdown formatting.
Continue to the next section when done
4

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.

GoGlobal REST API docs page showing pricing section with three subscription plans: Reddit Agent Solo ($69/mo, 700 credits), Enterprise (Custom/mo, 18,000+ credits), and Reddit Agent Pro ($199/mo, 2,000 credits)
The API Docs pricing page at goglobal.to/docs/api: three subscription tiers. The Enterprise plan (Most Popular) offers 18,000+ credits/month with unlimited projects and Priority API access.Click the image to view full size
  1. 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.
  2. 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.
  3. 3Enterprise — Custom pricing, 18,000+ credits/month. Unlimited projects, Priority API access, and dedicated support.
  4. 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.