API Authentication
How to generate and manage your Streampixel API key.
Generating Your API Key
Using Your API Key
curl -X POST https://api.streampixel.io/pixelStripeApi/projects/upload-file \
-H "Content-Type: application/json" \
-d '{
"apiKey": "your-api-key-here",
"userId": "your-user-id",
"projectId": "your-project-id",
"fileUrl": "https://storage.example.com/build.zip"
}'const response = await fetch(
'https://api.streampixel.io/pixelStripeApi/projects/upload-file',
{
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
apiKey: 'your-api-key-here',
userId: 'your-user-id',
projectId: 'your-project-id',
fileUrl: 'https://storage.example.com/build.zip',
}),
}
);Error Responses
Status
Message
Cause
Security Best Practices
Last updated