Getting Started
Welcome to Rynko! This guide will help you get up and running in just a few minutes.
Limited Time Offer: Sign up before March 31, 2026 and receive 5,000 free document credits with full access to all features. No credit card required!
What You'll Learn​
- How to create an account and set up your team
- How to generate your first API key
- How to generate your first PDF document
- Next steps after getting started
Step 1: Create an Account​
- Visit https://app.rynko.dev/signup
- Enter your email address and create a strong password
- Click Create Account
- Check your email for the verification link
- Click the verification link to activate your account
Password Requirements: Your password must be at least 8 characters long and include uppercase, lowercase, number, and special character.
Step 2: Complete Your Profile​
After creating your account, you'll be guided through a quick onboarding:
- Company Information: Enter your company name and role
- Team Size: Select your team size
- Use Case: Tell us how you plan to use Rynko
This helps us customize your experience!
Step 3: Create Your First API Key​
API keys are required to generate documents programmatically.
Via Dashboard:​
- Navigate to Settings → API Keys
- Click Create New API Key
- Give it a descriptive name (e.g., "Production Key")
- Select the permissions you need:
- ✅ Generate Documents
- ✅ Manage Templates
- ✅ View Analytics
- Click Create Key
Important: Copy your API key immediately! You won't be able to see it again for security reasons.
Example API Key:​
rd_sk_abc123xyz456...
Store this securely in your environment variables:
# .env
RYNKO_API_KEY=rd_sk_abc123xyz456...
Step 4: Generate Your First Document​
Now let's generate your first PDF using the API!
Quick Test with API Playground​
Use our API Playground for the easiest way to test:
- Go to API → Playground
- Select the Generate Document endpoint
- Choose a template from the dropdown
- Fill in the variables
- Click Send Request
Your document will be generated and you'll receive a download URL!
Using cURL​
curl -X POST https://api.rynko.dev/api/v1/documents/generate \
-H "Authorization: Bearer rd_sk_abc123xyz456..." \
-H "Content-Type: application/json" \
-d '{
"templateId": "your-template-id",
"format": "pdf",
"variables": {
"customerName": "John Doe",
"invoiceNumber": "INV-001",
"amount": 150.00
}
}'
Using JavaScript/TypeScript​
async function generateDocument() {
const response = await fetch('https://api.rynko.dev/api/v1/documents/generate', {
method: 'POST',
headers: {
'Authorization': 'Bearer rd_sk_abc123xyz456...',
'Content-Type': 'application/json',
},
body: JSON.stringify({
templateId: 'your-template-id',
format: 'pdf',
variables: {
customerName: 'John Doe',
invoiceNumber: 'INV-001',
amount: 150.00,
},
}),
})
const data = await response.json()
console.log('Document job queued:', data.jobId)
console.log('Download URL:', data.downloadUrl)
}
generateDocument()
Success! Once the job completes, you'll receive a signed URL to download your generated document!
Step 5: Create Your First Template​
Templates allow you to create reusable document designs:
- Navigate to Templates → Create New Template
- Choose PDF Template or Excel Template
- Use the drag-and-drop designer to create your layout
- Add variables like
{{customerName}}and{{invoiceNumber}} - Click Save and Publish
Now you can use this template when generating documents!
Next Steps​
Now that you've generated your first document, here's what to explore next:
🎨 Design Templates​
Learn how to create beautiful document templates with our visual designer.
📊 Track Generation​
Monitor document generation jobs and view analytics.
👉 Analytics Guide
🔌 API Integration​
Integrate Rynko into your application.
👉 API Reference
📄 Excel Generation​
Generate Excel spreadsheets from templates.
Common Questions​
How many documents can I generate?​
During the Founder's Preview (until March 31, 2026): Every new account receives 5,000 free document credits with full access to all features!
After the preview: You get 50 free documents per month on the Free plan (no credit card required). Upgrade to Starter ($19/mo) for 500 documents, Growth ($49/mo) for 2,500 documents, or Scale ($99/mo) for 10,000 documents. Check our Pricing Page for details.
What formats are supported?​
Rynko supports PDF and Excel (XLSX) document generation from templates.
Where can I view generated documents?​
All generated documents are visible in Document Logs with status, download links, and timing information.
How long are documents stored?​
Generated documents are available for download for 1-3 days depending on your plan. You can configure retention in your settings.
Need Help?​
- 📖 User Guide
- 💻 Developer Guide
- 📚 API Reference
- 📧 support@rynko.dev
Ready to dive deeper? → User Guide