API Keys

Manage API keys for this project

K
Docs
LIVE

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

Active
tf_prod_sk_1234...cdef
Created 2024-12-01Last used 2 minutes ago
tools:executesandbox:createsandbox:read

Development Key

Active
tf_dev_sk_abcd...7890
Created 2024-12-10Last used 1 hour agoExpired
tools:executesandbox:createsandbox:readlogs:read

CI/CD Pipeline

Expired
tf_ci_sk_fedc...4321
Created 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'
});