Transcriptic · Authentication Profile

Transcriptic Authentication

Authentication

Transcriptic secures its APIs with apiKey, http, and custom-signature across 4 declared security schemes, as derived from its OpenAPI definitions.

CompanyLife SciencesLaboratory AutomationCloud LabDrug DiscoveryBiotechnologyREST APIJSON:APIAutoprotocol
Methods: apiKey, http, custom-signature Schemes: 4 OAuth flows: API key in: header

Security Schemes

UserEmailToken apiKey
· in: header ()
SessionCookie apiKey
· in: cookie ()
StrateosBearer http
scheme: bearer
StrateosSign custom

Source

Authentication Profile

transcriptic-authentication.yml Raw ↑
generated: '2026-07-21'
method: searched
source: https://github.com/strateos/transcriptic/blob/master/transcriptic/config.py
docs: https://developers.strateos.com/docs/getting-started-with-the-cli
api_root: https://secure.strateos.com
summary:
  types: [apiKey, http, custom-signature]
  api_key_in: [header]
  notes: >-
    Token-based auth, no OAuth2 scope surface. The official client authenticates
    with a per-user email + API token pair sent as request headers; a bearer-token
    and an RSA request-signing mode are also supported by the client.
schemes:
  - name: UserEmailToken
    type: apiKey
    in: header
    header_names:
      - X-User-Email
      - X-User-Token
    description: >-
      Primary auth. The user's account email and a personal API token (obtained via
      `transcriptic login` or the web app) are sent on every request as the
      X-User-Email and X-User-Token headers.
    source: transcriptic/config.py
  - name: SessionCookie
    type: apiKey
    in: cookie
    description: >-
      Alternative browser-session authentication via Cookie, mutually exclusive with
      token headers.
    source: transcriptic/config.py
  - name: StrateosBearer
    type: http
    scheme: bearer
    description: >-
      Bearer-token authentication via the Authorization header (StrateosBearerAuth in
      the official client).
    source: transcriptic/config.py
  - name: StrateosSign
    type: custom
    description: >-
      RSA signature-based request authentication (StrateosSign in the official
      client) for signed programmatic access.
    source: transcriptic/config.py