Integrations • Website • Docs • Blog • Twitter • Discord
API Intelligence Platform.
Treblle is a lightweight SDK that helps Engineering and Product teams build, ship & maintain REST-based APIs faster.
- API Monitoring & Observability
- Auto-generated API Docs
- API analytics
- Treblle API Score
- API Lifecycle Collaboration
- Native Treblle Apps
Once you've integrated a Treblle SDK in your codebase, this SDK will send requests and response data to your Treblle Dashboard.
In your Treblle Dashboard you get to see real-time requests to your API, auto-generated API docs, API analytics like how fast the response was for an endpoint, the load size of the response, etc.
Treblle also uses the requests sent to your Dashboard to calculate your API score which is a quality score that's calculated based on the performance, quality, and security best practices for your API.
Visit https://docs.treblle.com for the complete documentation.
Masking fields ensure certain sensitive data are removed before being sent to Treblle.
To make sure masking is done before any data leaves your server we built it into all our SDKs.
This means data masking is super fast and happens on a programming level before the API request is sent to Treblle. You can customize exactly which fields are masked when you're integrating the SDK.
Visit the Masked fields section of the docs for the complete documentation.
- Sign in to Treblle.
- Create a Treblle project.
- Setup the SDK for your platform.
go get github.com/treblle/treblle-go
import (
"github.com/treblle/treblle-go"
)
func main() {
treblle.Configure(treblle.Configuration{
SDK_TOKEN: "your-treblle-sdk-token",
API_KEY: "your-treblle-api-key",
})
// Your API server setup
// ...
}
The SDK automatically extracts route patterns from Gorilla Mux:
import (
"github.com/gorilla/mux"
"github.com/treblle/treblle-go"
)
func main() {
// Configure Treblle
treblle.Configure(treblle.Configuration{
SDK_TOKEN: "your-treblle-sdk-token",
API_KEY: "your-treblle-api-key",
})
// Create a new router
r := mux.NewRouter()
// Apply the Treblle middleware to the router
r.Use(treblle.Middleware)
// Define your routes
r.HandleFunc("/users", getUsersHandler).Methods("GET")
r.HandleFunc("/users/{id}", getUserHandler).Methods("GET")
http.ListenAndServe(":8080", r)
}
For the standard library's HTTP server, use the HandleFunc
helper to properly set route patterns:
import (
"net/http"
"github.com/treblle/treblle-go"
)
func main() {
// Configure Treblle
treblle.Configure(treblle.Configuration{
SDK_TOKEN: "your-treblle-sdk-token",
API_KEY: "your-treblle-api-key",
})
// Create a new serve mux
mux := http.NewServeMux()
// Define routes with route path patterns
mux.Handle("/users", treblle.Middleware(treblle.HandleFunc("/users", getUsersHandler)))
mux.Handle("/users/", treblle.Middleware(treblle.HandleFunc("/users/:id", getUserHandler)))
http.ListenAndServe(":8080", mux)
}
For other router libraries, use the WithRoutePath
function to set route patterns:
// Example with a hypothetical router
router.GET("/users/:id", wrapHandler(treblle.WithRoutePath("/users/:id",
treblle.Middleware(http.HandlerFunc(getUserHandler)))))
You can also set route paths programmatically in your handlers:
func myHandler(w http.ResponseWriter, r *http.Request) {
// Set the route path for this specific request
r = treblle.SetRoutePath(r, "/api/custom/:param")
// Your handler logic
// ...
}
Check the examples
directory for complete example applications:
gorilla_example
: Shows integration with Gorilla Muxstandard_example
: Shows integration with the standard HTTP package
Treblle provides open-source SDKs that let you seamlessly integrate Treblle with your REST-based APIs.
treblle-laravel
: SDK for Laraveltreblle-php
: SDK for PHPtreblle-symfony
: SDK for Symfonytreblle-lumen
: SDK for Lumentreblle-sails
: SDK for Sailstreblle-adonisjs
: SDK for AdonisJStreblle-fastify
: SDK for Fastifytreblle-directus
: SDK for Directustreblle-strapi
: SDK for Strapitreblle-express
: SDK for Expresstreblle-koa
: SDK for Koatreblle-go
: SDK for Gotreblle-ruby
: SDK for Ruby on Railstreblle-python
: SDK for Python/Django
See the docs for more on SDKs and Integrations.
Besides the SDKs, we also provide helpers and configuration used for SDK development. If you're thinking about contributing to or creating a SDK, have a look at the resources below:
treblle-utils
: A set of helpers and utility functions useful for the JavaScript SDKs.php-utils
: A set of helpers and utility functions useful for the PHP SDKs.
First and foremost: Star and watch this repository to stay up-to-date.
Also, follow our Blog, and on Twitter.
You can chat with the team and other members on Discord and follow our tutorials and other video material at YouTube.
Here are some ways of contributing to making Treblle better:
- Try out Treblle, and let us know ways to make Treblle better for you. Let us know here on Discord.
- Join our Discord and connect with other members to share and learn from.
- Send a pull request to any of our open source repositories on Github. Check the contribution guide on the repo you want to contribute to for more details about how to contribute. We're looking forward to your contribution!