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

  • Ingest Traces
  • Ingest Logs
  • Notes
APIIngest API (SDK)

Ingest API

These endpoints are called by Upblit SDKs to send telemetry data. They authenticate via API key, not JWT.

Ingest Traces

Sends a batch of distributed trace spans.

POST /ingest/traces x-api-key: {your-api-key} Content-Type: application/json { "timestamp": "2026-05-27T10:00:00.000Z", "traces": [ { "timestamp": "2026-05-27T10:00:00.123Z", "requestMethod": "controller:POST", "requestURL": "/api/checkout", "responseStatus": 200, "traceId": "550e8400-e29b-41d4-a716-446655440000", "spanId": "6ba7b810-9dad-11d1-80b4-00c04fd430c8", "parentSpanId": null, "durationMs": 145 } ] }

Headers:

HeaderRequiredDescription
x-api-keyYesApplication API key
Content-TypeYesMust be application/json

Response: 200 OK


Ingest Logs

Sends a batch of structured log entries.

POST /ingest/logs x-api-key: {your-api-key} Content-Type: application/json { "timestamp": "2026-05-27T10:00:00.000Z", "logs": [ { "traceId": "550e8400-e29b-41d4-a716-446655440000", "level": "error", "type": "app", "message": "Payment processing failed: timeout", "timestamp": "2026-05-27T10:00:00.456Z", "clientTimestamp": "2026-05-27T10:00:00.450Z" } ] }

Response: 200 OK


Notes

  • The timestamp at the envelope level is the flush time (when the SDK sent the batch)
  • Individual span/log timestamp fields are the actual event times
  • The backend resolves applicationId and projectId from the API key automatically
  • You do not need to include applicationId or projectId in the payload
Last updated on May 27, 2026
AuthenticationOrganizations 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.