{ "opencollection": "1.0.0", "info": { "name": "Treblle Analytics Projects API", "version": "1.0.0" }, "request": { "auth": { "type": "apikey", "key": "Treblle-Api-Key", "value": "{{Treblle-Api-Key}}", "placement": "header" } }, "items": [ { "info": { "name": "Projects", "type": "folder" }, "items": [ { "info": { "name": "List Projects", "type": "http" }, "http": { "method": "GET", "url": "https://app.treblle.com/api/v1/projects" }, "docs": "Returns a list of all API projects in the workspace. Each project corresponds to a monitored API with its own API ID and SDK token." }, { "info": { "name": "Create Project", "type": "http" }, "http": { "method": "POST", "url": "https://app.treblle.com/api/v1/projects", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new API project in Treblle. Returns the project including the API ID and SDK token needed for SDK instrumentation." }, { "info": { "name": "Get Project", "type": "http" }, "http": { "method": "GET", "url": "https://app.treblle.com/api/v1/projects/:projectId", "params": [ { "name": "projectId", "value": "", "type": "path", "description": "The unique identifier for the project" } ] }, "docs": "Retrieves details of a specific Treblle project by its ID, including configuration, API ID, and current monitoring statistics." }, { "info": { "name": "Update Project", "type": "http" }, "http": { "method": "PUT", "url": "https://app.treblle.com/api/v1/projects/:projectId", "params": [ { "name": "projectId", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates a Treblle project's configuration including name, description, and environment settings." }, { "info": { "name": "Delete Project", "type": "http" }, "http": { "method": "DELETE", "url": "https://app.treblle.com/api/v1/projects/:projectId", "params": [ { "name": "projectId", "value": "", "type": "path" } ] }, "docs": "Deletes a Treblle project and all associated data." } ] } ], "bundled": true }