Installation
Getting Started
- Create an account at https://admin.dynalink.app
- Create a new project in the admin panel
- Obtain your x-project-key for API authentication
Authentication
Project Key
Every API request requires the x-project-key
header:
x-project-key: YOUR_PROJECT_KEY
Obtaining Project Key
- Login to https://admin.dynalink.app
- Create a new project
- Copy the generated project key
Security Best Practices
- Store project key securely
- Never expose key in client-side code
- Use environment variables for key management
Example API Request
fetch('https://dynalink.app/api/endpoint', {
headers: {
'x-project-key': 'your_project_key_here',
'Content-Type': 'application/json'
}
})