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 for the initial agent. Used for identification in logs and dashboard.
Response
The API key for the newly created agent. Format: sk_agt_...
Unique identifier for the agent. Format: agt_...
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"
}