---
title: "SignerSession"
url: "https://livepeer.pymthouse.com/apis/clearinghouse-usage/versions/295ecb35-5fcc-474e-a596-7431f5a1e8aa/schemas/SignerSession"
---

> Full API specification: https://livepeer.pymthouse.com/apis/clearinghouse-usage/versions/295ecb35-5fcc-474e-a596-7431f5a1e8aa.md

# SignerSession

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Clearinghouse Builder API
  version: 1.0.1
servers:
  - url: https://builder-api-production-82bf.up.railway.app
    description: Railway builder-api (Auth0 JWT or sk_*; default until Kong Gateway
      is linked)
  - url: http://localhost:8095
    description: Local builder-api
  - url: ${KONNECT_PROXY_URL}
    description: Kong Gateway proxy (Auth0 JWT / DCR Bearer only; sk_* not accepted
      at the edge)
components:
  schemas:
    SignerSession:
      type: object
      required:
        - access_token
        - token_type
        - expires_in
        - scope
        - has_access
        - balance_usd_micros
      properties:
        access_token:
          type: string
        token_type:
          type: string
          enum:
            - Bearer
        expires_in:
          type: integer
        scope:
          type: string
        signer_url:
          type: string
          format: uri
        discovery_url:
          type: string
          format: uri
        issued_token_type:
          type: string
        correlation_id:
          type: string
        has_access:
          type: boolean
          description: Whether the customer currently has allowance. Always present.
        balance_usd_micros:
          type: integer
          format: int64
          description: Allowance balance in USD micros. Always present.
```
