Skip to main content

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:

  1. Visit wryn.ai
  2. Fill out the early access request form
  3. You'll receive an invitation email when your access is approved
  4. Follow the setup instructions in your invitation
Coming Soon

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:

  1. Check your inbox for the Wryn API key email
  2. Locate your unique API key in the email
  3. Copy the key and store it securely
  4. Check your spam/junk folder if you don't see the email
Security Best Practice

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 keys
  • live_ - Environment (live or test)
  • Alphanumeric string - Your unique identifier

Environment Setup

# 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 NameEnvironmentUse Case
ProductionLiveProduction applications
StagingTestStaging/QA environment
DevelopmentTestLocal development
CI/CDTestAutomated 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:

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?