Account Setup
Get started with Wryn in minutes. This guide walks you through creating your account and getting your API credentials.
Get Early Access
To get started:
- Visit wryn.ai
- Fill out the early access request form
- You'll receive an invitation email when your access is approved
- Follow the setup instructions in your invitation
Public signup will be available soon. Join our early access program to get started today!
Free Trial
All new accounts include:
- 1,000 free credits per month
- Access to all features
- No credit card required
- No time limit
Perfect for testing and small projects!
Get Your API Key
Your API key authenticates all requests to Wryn:
Receive Your API Key
Your API key will be shared with you via email when your early access is approved:
- Check your inbox for the Wryn API key email
- Locate your unique API key in the email
- Copy the key and store it securely
- Check your spam/junk folder if you don't see the email
Never commit API keys to version control or share them publicly. Use environment variables or secret management tools.
API Key Format
wryn_live_1234567890abcdefghijklmnopqrstuvwxyz
wryn_- Prefix for all Wryn keyslive_- Environment (live or test)- Alphanumeric string - Your unique identifier
Environment Setup
Option 1: Environment Variable (Recommended)
# Linux/macOS
export WRYN_API_KEY="wryn_live_your_key_here"
# Windows PowerShell
$env:WRYN_API_KEY="wryn_live_your_key_here"
# Windows Command Prompt
set WRYN_API_KEY=wryn_live_your_key_here
Option 2: .env File
Create a .env file in your project root:
WRYN_API_KEY=wryn_live_your_key_here
Add to .gitignore:
.env
Option 3: Configuration File
{
"wryn": {
"api_key": "wryn_live_your_key_here"
}
}
Test Your Setup
Verify your API key works with a simple request:
Using cURL
curl -X POST https://api.wryn.io/v1/<end_point> \
-H "x-api-key: wryn_live_1234567890abcdefghijklmnopqrstuvwxyz" \
-H "Content-Type: application/json" \
-d '{
"url": "https://example.com/",
"action": "extract_title",
"engine": "simple",
"retries": 2
}'
Expected Response
{
"result": {
"data": {
"title": "example.com"
},
"metadata": {
"success": true
}
}
}
Using Python
import os
import requests
api_key = os.environ['WRYN_API_KEY']
response = requests.post(
'https://api.wryn.io/v1/<end_point>',
headers={'x-api-key': 'wryn_live_1234567890abcdefghijklmnopqrstuvwxyz'},
json={'url': 'https://example.com', 'action': 'extract_title', 'engine': 'simple'}
)
print(response.json())
Multiple API Keys
You can create multiple API keys for different environments:
| Key Name | Environment | Use Case |
|---|---|---|
| Production | Live | Production applications |
| Staging | Test | Staging/QA environment |
| Development | Test | Local development |
| CI/CD | Test | Automated testing |
Benefits:
- Security - Rotate keys without downtime
- Tracking - Monitor usage per environment
- Control - Revoke compromised keys independently
Next Steps
Now that your account is set up:
- Get Your First Scrape - Make your first API request
- API Reference - Explore all API endpoints
- Python SDK - Use our official Python library
Troubleshooting
Email Verification Issues
Problem: Didn't receive verification email
Solutions:
- Check spam/junk folder
- Verify email address spelling
- Resend verification email
- Contact support@wryn.ai
API Key Not Working
Problem: Getting 401 Unauthorized errors
Solutions:
- Verify key is copied correctly (no extra spaces)
- Check key is not revoked in dashboard
- Ensure using correct header format:
'x-api-key': 'wryn_live_1234567890abcdefghijklmnopqrstuvwxyz' - Try creating a new key
Can't Access Dashboard
Problem: Login page not loading
Solutions:
- Clear browser cache and cookies
- Try incognito/private mode
- Use different browser
- Check status.wryn.ai for service status
Need Help?
- FAQ - Common questions
- Support - Contact our team
- Email: support@wryn.ai