1C Platform1cPlatform

AUTHENTICATION

API Authentication Guide

Last updated: December 14, 2025 • 8 min read

Learn how to securely authenticate your API requests to 1cPlatform using API keys, OAuth, and JWT tokens.

Authentication Methods

1cPlatform supports three authentication methods:

Getting Your API Key

To get your API key:

  1. Log into your 1cPlatform dashboard
  2. Navigate to Settings → API Keys
  3. Click "Generate New Key"
  4. Copy and securely store your key

Example Request

curl https://api.1cplatform.com/v1/agents \
  -H "Authorization: Bearer YOUR_API_KEY"

Security Best Practices

  • Never expose API keys in client-side code
  • Rotate keys regularly (every 90 days recommended)
  • Use environment variables to store keys
  • Implement rate limiting on your end
  • Monitor API usage for unusual activity

⚠️ Important

If you suspect your API key has been compromised, revoke it immediately from your dashboard and generate a new one.

Was this article helpful?