API

API Platform Overview: Manage Keys and Integrate with GoGlobal

Learn how to create and manage API keys, understand the three core API capabilities (Self-hosted Auth, Full Order API, Simple Integration), and start making authenticated requests.

API6 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

What Is the API Platform?

The GoGlobal API Platform lets you integrate Reddit ordering, publishing, and monitoring capabilities directly into your own tools, workflows, or applications. Navigate to API in the left sidebar to access the platform. The page header reads 'API Platform — Manage your API keys and integrate with the REST API.' Two action buttons are available: 'API Docs' (opens the full reference at goglobal.to/docs/api) and '+ Create API Key' (orange button, creates a new secret key).

API Platform page showing three feature cards (Self-hosted Auth, Full Order API, Simple Integration), the Your API Keys table with two keys (test2 Revoked, test1 Active), and the API Reference section
The API Platform page: three capability cards at the top, the API key management table in the middle (showing masked key values, status badges, and revoke/delete actions), and the API Reference section at the bottom.Click the image to view full size
2

Three Core API Capabilities

The API Platform highlights three key reasons to use the API rather than the UI.

GoGlobal / Help workflow
API Platform Overview: Manage Keys and Integrate with GoGlobal
1Analyze
2Configure
3Execute
4Check

Three Core API Capabilities

Complete the setup step by step

3 steps
1

Self-hosted Auth — Your keys, your control. No third-party auth required. All API calls are authenticated with your own sk_live_... Bearer token, so no OAuth redirect or third-party login is needed.

2

Full Order API — Create orders, publish posts, manage votes via REST. Every action available in the Order UI is also available as an API endpoint, enabling fully automated Reddit publishing pipelines.

3

Simple Integration — Standard Bearer token — works with any HTTP client. You can call the API from curl, Python requests, Node.js fetch, Postman, or any tool that supports HTTP headers.

Workflow diagram: when product screenshots are unavailable, use this flow to follow the setup steps.
  1. 1Self-hosted Auth — Your keys, your control. No third-party auth required. All API calls are authenticated with your own sk_live_... Bearer token, so no OAuth redirect or third-party login is needed.
  2. 2Full Order API — Create orders, publish posts, manage votes via REST. Every action available in the Order UI is also available as an API endpoint, enabling fully automated Reddit publishing pipelines.
  3. 3Simple Integration — Standard Bearer token — works with any HTTP client. You can call the API from curl, Python requests, Node.js fetch, Postman, or any tool that supports HTTP headers.
Continue to the next section when done
3

Creating and Managing API Keys

The 'Your API Keys' section shows all keys associated with your account. Keys are hashed and stored securely — the raw key value is only shown once at creation. After that, only the first 12 characters are visible (e.g. sk_live_af83••••••••).

GoGlobal / Help workflow
API Platform Overview: Manage Keys and Integrate with GoGlobal
1Analyze
2Configure
3Execute
4Check

Creating and Managing API Keys

Complete the setup step by step

4 steps
1

Click '+ Create API Key' to generate a new key. Copy and save the full key immediately — it will not be shown again.

2

The key table shows: Name (the label you gave the key), Key (masked value), Status (Active / Revoked), Last Used (date of last API call), Created (creation date), and Actions (Revoke / Delete).

3

Click 'Revoke' to immediately invalidate a key without deleting it. The key status changes to 'Revoked' and all subsequent API calls using that key will return 401 Unauthorized.

4

Click the trash icon to permanently delete a key. This action cannot be undone.

Workflow diagram: when product screenshots are unavailable, use this flow to follow the setup steps.
  1. 1Click '+ Create API Key' to generate a new key. Copy and save the full key immediately — it will not be shown again.
  2. 2The key table shows: Name (the label you gave the key), Key (masked value), Status (Active / Revoked), Last Used (date of last API call), Created (creation date), and Actions (Revoke / Delete).
  3. 3Click 'Revoke' to immediately invalidate a key without deleting it. The key status changes to 'Revoked' and all subsequent API calls using that key will return 401 Unauthorized.
  4. 4Click the trash icon to permanently delete a key. This action cannot be undone.

Create separate keys for each integration (e.g. one for your automation script, one for Postman testing). This way you can revoke a single key if it is compromised without affecting other integrations.

4

Making Your First API Call

All API endpoints require an Authorization: Bearer sk_live_... header. The API Reference section on the platform page shows the base curl command and the full endpoint table.

GoGlobal / Help workflow
API Platform Overview: Manage Keys and Integrate with GoGlobal
1Analyze
2Configure
3Execute
4Check

Making Your First API Call

Complete the setup step by step

4 steps
1

Copy your active API key from the key table.

2

Run: curl https://your-domain.com/api/v1/me -H 'Authorization: Bearer sk_live_your_key_here'

3

A successful response returns your user profile JSON. A 401 response means the key is invalid or revoked.

4

Click 'API Docs' at the top of the platform page to open the full interactive reference at goglobal.to/docs/api.

Workflow diagram: when product screenshots are unavailable, use this flow to follow the setup steps.
  1. 1Copy your active API key from the key table.
  2. 2Run: curl https://your-domain.com/api/v1/me -H 'Authorization: Bearer sk_live_your_key_here'
  3. 3A successful response returns your user profile JSON. A 401 response means the key is invalid or revoked.
  4. 4Click 'API Docs' at the top of the platform page to open the full interactive reference at goglobal.to/docs/api.
Continue to the next section when done