Quickstart
Authenticate with your Seqlense API key and make your first hello-world request.
Make your first call to the Seqlense Monitoring API in under a minute.
Authentication
All API requests require an API key passed in the Authorization header. You
can generate your API key from your account settings
(Account → Settings → API Keys).
GET https://api.seqlense.com/v1/hello
Authorization: Bearer YOUR_API_KEYYour API key is tied to your account. Keep it secret and never expose it in client-side code.
Say hello
Call the endpoint
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://api.seqlense.com/v1/hello"Read the response
A 200 OK confirms the API is reachable and your key is valid.
{
"message": "Hello, world!",
"service": "seqlense-monitoring",
"version": "1.0.0"
}Personalise it
Pass a name query parameter to greet someone by name.
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://api.seqlense.com/v1/hello?name=Alice"{
"message": "Hello, Alice!",
"service": "seqlense-monitoring",
"version": "1.0.0"
}Next steps
Head to the API Reference for the full endpoint, parameters and a live, runnable example.