Skip to main content
POST
/
v1
/
signup
curl -X POST https://api.saturn-pay.com/v1/signup \
  -H "Content-Type: application/json" \
  -d '{
    "name": "my-research-agent"
  }'
{
  "apiKey": "sk_agt_a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6",
  "agentId": "agt_xyz789abc123",
  "accountId": "acc_123456789"
}
Creates a new Saturn account with an initial agent. Returns an API key that can be used for all subsequent requests.
The API key is only returned once. Store it securely.

Request

name
string
required
Name for the initial agent. Used for identification in logs and dashboard.

Response

apiKey
string
The API key for the newly created agent. Format: sk_agt_...
agentId
string
Unique identifier for the agent. Format: agt_...
accountId
string
Unique identifier for the account. Format: acc_...
curl -X POST https://api.saturn-pay.com/v1/signup \
  -H "Content-Type: application/json" \
  -d '{
    "name": "my-research-agent"
  }'
{
  "apiKey": "sk_agt_a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6",
  "agentId": "agt_xyz789abc123",
  "accountId": "acc_123456789"
}