REST API
Seamlessly integrate Appetize into your CI/CD pipeline by making use of our REST API.
🚀 Getting Started
1. Get Your API Token
2. Authenticate Your Requests
curl -X GET https://api.appetize.io/v1/apps \
-H "X-API-KEY: your_api_token"fetch("https://api.appetize.io/v1/apps", {
headers: {
"X-API-KEY": "your_api_token"
}
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error(error));3. Explore our API
Format & Conventions
Response Codes
Status code
Details
Last updated