API Docs5 min read5 sections

API Platform Overview

Learn about the GoSEO API platform's key management, authentication methods, and common scenarios suitable for automation.

1

Feature Analysis

The API platform is suitable for integrating GoSEO capabilities into internal systems, such as keyword imports, content generation, task queries, and automated publishing. The focus is on key management and permission boundaries, not blindly automating every UI action.

2

Detailed Steps

First create API keys for individual purposes, then verify authentication with a minimal script. Use different keys for different automation scripts to make revocation and troubleshooting easier.

API platform page showing capability cards, an API key table, and the API Reference section
The API platform is used to manage keys, view status, and access the API reference.
  1. 1Go to the API page in the GoSEO dashboard.
  2. 2Review the API key management area and the capability descriptions.
  3. 3Click Create API Key and enter a name for its purpose.
  4. 4Copy the full key and save it in a secure environment variable.
  5. 5Test by calling a read-only endpoint using the Authorization Bearer header.
  6. 6Set up logging, error handling, and a key rotation plan for production scripts.
Continue to the next section when done
3

Where to find it

Open the API page in the GoSEO dashboard to create, revoke, and delete API keys, and to view basic request examples. Each key is displayed in full only once at creation.

API platform page showing capability cards, API key table, and API Reference section
The API platform is used to manage keys, check status, and access the API Reference.
4

Authentication method

All API requests use an Authorization Bearer token. Please create separate keys for different scripts or integrations so they can be revoked individually if compromised.

curl https://www.goseo.to/api/v1/me \
  -H "Authorization: Bearer sk_live_your_key_here"
5

Common Use Cases

The API is suitable for importing keywords, content generation, querying task status, and integrating the publishing workflow into internal systems. For high-risk operations, it is recommended to retain manual approval.

API Platform Overview - GoSEO Help Center | GoSEO