API Keys
Manage API keys for this project
Keep your API keys secure
Never share your API keys in public repositories or client-side code. Use environment variables to store them securely.
2
Active Keys
12.4K
API Calls Today
99.9%
Success Rate
Your API Keys
Production API Key
Activetf_prod_sk_1234...cdefCreated 2024-12-01Last used 2 minutes ago
tools:executesandbox:createsandbox:read
Development Key
Activetf_dev_sk_abcd...7890Created 2024-12-10Last used 1 hour agoExpired
tools:executesandbox:createsandbox:readlogs:read
CI/CD Pipeline
Expiredtf_ci_sk_fedc...4321Created 2024-11-15Last used 3 days agoExpired
tools:execute
Quick Start
Use your API key to authenticate requests to the runtools.ai API:
import { Runtools } from '@runtools/sdk';
const client = new Runtools({
apiKey: process.env.RUNTOOLS_API_KEY
});
// Execute a tool
const result = await client.tools.execute('gmail_send', {
to: '[email protected]',
subject: 'Hello!',
body: 'Sent via runtools.ai'
});