Installation

Getting Started

  1. Create an account at https://admin.dynalink.app
  2. Create a new project in the admin panel
  3. 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

  1. Login to https://admin.dynalink.app
  2. Create a new project
  3. Copy the generated project key

Security Best Practices

  1. Store project key securely
  2. Never expose key in client-side code
  3. 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'
 }
})