MTI Token Generator

Generate API authentication tokens for testing MetaTravel.ai endpoints

Generate Authentication Token

Follow the steps below to create a test account and get your API token

1
Register Account
2
Login & Get Token
3
Use Token

Step 1: Create Test Account

Usage Examples

How to use your generated token in API requests

Authorization Header

Authorization: Bearer your_token_here

JavaScript Example

const response = await fetch('/api/v1/user', {
  headers: {
    'Authorization': 'Bearer token'
  }
});