> ## Documentation Index
> Fetch the complete documentation index at: https://docs.traceback.cc/llms.txt
> Use this file to discover all available pages before exploring further.

# Upload Source Maps

> Upload JavaScript/TypeScript source maps or native dSYMs/ProGuard mappings for a release.



## OpenAPI

````yaml POST /sourcemaps
openapi: 3.1.0
info:
  title: Traceback API
  version: 1.0.0
  description: >-
    REST API for ingesting, querying, and managing errors, distributed traces,
    session replays, and source maps in Traceback.
servers:
  - url: https://api.traceback.dev/v1
    description: Production Server
  - url: https://sandbox-api.traceback.dev/v1
    description: Sandbox / Staging Server
security:
  - bearerAuth: []
paths:
  /sourcemaps:
    post:
      summary: Upload Source Maps
      description: >-
        Upload JavaScript/TypeScript source maps or native dSYMs/ProGuard
        mappings for a release.
      operationId: uploadSourcemap
      responses:
        '201':
          description: Source maps registered and ready for symbolication
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API_KEY
      description: >-
        Your project or organization API key starting with `tb_live_` or
        `tb_test_`.

````