Skip to Content
Upblit
AboutOpen SourceCommunityDeveloperContactPricing
Star on GitHub—Sign in
CTRL K
  • Introduction
    • AI Gateway Overview
    • Documents
    • Tenants
    • API Reference Overview
    • AI Gateway API
    • API Keys API
    • Applications API
    • Authentication
    • Ingest API (SDK)
    • Organizations API
    • Projects API
    • Telemetry API
    • Users API
    • Architecture Overview
    • Database Architecture
    • Multi-Tenancy
    • Security Model
    • Service Boundaries
    • Telemetry Pipeline
  • DeployX CLI
    • Contributing
    • Architecture Rules
    • Coding Guidelines
    • SDK Development
    • Dashboard Overview
    • AI Gateway
    • API Keys
    • Applications
    • Observability
    • Organizations
    • Profile
    • Projects
    • Quickstart
    • Authentication
    • Your First Project
    • Installation
    • Observability Overview
    • Structured Logs
    • Telemetry Flow
    • Distributed Traces
    • SDK Overview
    • Express SDK
    • Go SDK
    • Java SDK (Coming Soon)
    • Python SDK
    • React SDK (Coming Soon)
  • Introduction
    • AI Gateway Overview
    • Documents
    • Tenants
    • API Reference Overview
    • AI Gateway API
    • API Keys API
    • Applications API
    • Authentication
    • Ingest API (SDK)
    • Organizations API
    • Projects API
    • Telemetry API
    • Users API
    • Architecture Overview
    • Database Architecture
    • Multi-Tenancy
    • Security Model
    • Service Boundaries
    • Telemetry Pipeline
  • DeployX CLI
    • Contributing
    • Architecture Rules
    • Coding Guidelines
    • SDK Development
    • Dashboard Overview
    • AI Gateway
    • API Keys
    • Applications
    • Observability
    • Organizations
    • Profile
    • Projects
    • Quickstart
    • Authentication
    • Your First Project
    • Installation
    • Observability Overview
    • Structured Logs
    • Telemetry Flow
    • Distributed Traces
    • SDK Overview
    • Express SDK
    • Go SDK
    • Java SDK (Coming Soon)
    • Python SDK
    • React SDK (Coming Soon)

On This Page

  • Base URL
  • Authentication
  • Endpoint Groups
  • OpenAPI / Swagger
  • Response Format
  • Pagination
APIAPI Reference Overview

API Reference

The Upblit backend exposes a REST API on port 8080. All endpoints (except OAuth2 callbacks and SDK ingest) require a valid JWT.

Base URL

http://localhost:8080 # local development https://api.upblit.com # production (when deployed)

Authentication

Most endpoints require a JWT Bearer token:

Authorization: Bearer {your-jwt-token}

SDK ingest endpoints use an API key instead:

x-api-key: {your-api-key}

See Authentication for details.

Endpoint Groups

GroupBase PathDescription
Organizations/orgCreate and list organizations
Projects/projectCreate and list projects
Applications/applicationsCreate and list applications
API Keys/apikeyGenerate API keys
Telemetry/logsQuery traces and logs
Ingest/ingestSDK telemetry ingestion
AI Gateway/aiTenants and documents
Users/UserUser profile

OpenAPI / Swagger

An interactive API reference is available at the Swagger UI:

Upblit/swagger/swagger/

The OpenAPI spec is at Upblit/swagger/swagger/public/swagger.json.

Response Format

All endpoints return JSON. Error responses include a message:

{ "message": "Organization not found", "status": 404 }

Pagination

Some list endpoints support pagination via page and size query parameters. Paginated responses use the PaginatedResponse<T> wrapper:

{ "content": [...], "totalElements": 42, "totalPages": 5, "page": 0, "size": 10 }
Last updated on May 27, 2026
TenantsAI Gateway API
Upblit

A student-built observability workbench for logs, traces, metrics, API keys, and AI-assisted incident notes.

OAuthAPI scopesTrace contextRetention notes

Product

  • Architecture
  • Dashboard preview
  • AI docs
  • Security
  • Pricing

Developers

  • Developer docs
  • API reference
  • Changelog
  • GitHub
  • Status

Company

  • Support
  • Contact
  • Docs
  • Dashboard
  • Sign in

Legal

  • Privacy Policy
  • Terms
  • Cookie Policy
  • Acceptable Use
  • Data Retention
  • Data Processing

Copyright 2026 Upblit. All rights reserved.

Built for telemetry review, API operations, and incident response.