Documentation
Comprehensive guides, API references, and technical resources for developers and operators.
Get StartedGetting Started
Create Account
Sign up on our platform and access your API keys and endpoint configurations.
Get StartedFirst Request
Send your first API request and validate endpoint configuration with our testing tools.
Try ExampleProduction Testing
Scale your use case with our integration testing suite and performance monitoring.
View TestsAPI Reference
Base URI
https://api.sptport.com/v1
Authentication
All requests must include an Authorization header with bearer token:
Authorization: Bearer "YOUR_API_KEY"
Quick Example
GET
// View all available endpoints
curl -X GET
https://api.sptport.com/v1/endpoints
-H 'Authorization: Bearer YOUR_API_KEY'
curl -X GET
https://api.sptport.com/v1/endpoints
-H 'Authorization: Bearer YOUR_API_KEY'
Developer Guides
Endpoint Configuration
Learn how to configure routing and security policies for your endpoints.
View GuideCode Samples

Python
import requests
url = 'https://api.sptport.com/v1/monitor'
headers = {'Authorization': 'Bearer YOUR_KEY'}
response = requests.get(url, headers=headers)

JavaScript
fetch('https://api.sptport.com/v1/data', {
method: 'GET',
headers: {'Authorization': 'Bearer YOUR_KEY'}
})

Go
pkg main
import "net/http"
req, _ := http.NewRequest(
"GET",
"https://api.sptport.com/v1/stats",
nil,
)
Need Help?
Our support team helps with API issues, onboarding, and troubleshooting. We offer priority support for premium accounts.
Contact Support