# long_term_debt

Long-term debt obligations. Often NULL because issuers fold this into `noncurrent_liabilities` instead of breaking it out.

A bigint signal column on the Tickerbot computed state table (20,798+ ticker rows) — computed by the platform, queryable by bare name across the API. Values are NULL on rows the signal doesn't apply to.

- Group: Fundamentals
- Category: Balance sheet
- Type: bigint
- Unit: USD
- Update cadence: post-close daily
- Universe: all tickers
- History: none — live row only, not historized (no as-of reads for this column)
- Nullable: yes

## Query it

Every applicable form factor, grouped by endpoint family. Response payloads are real captures, sampled 2026-08-18 and trimmed; your run's values and dates will differ.

### Use scan — `/v2/scan`

The whole market through a WHERE clause — this signal composed freely with any other column. (https://tickerbot.io/docs/endpoints/scan.md)

#### Live — the whole market, ranked by this column

```bash
curl -G "https://api.tickerbot.io/v2/scan" \
  --data-urlencode "q=long_term_debt IS NOT NULL" \
  -d "order=long_term_debt" -d "columns=long_term_debt" \
  -H "Authorization: Bearer YOUR_KEY"
```

Response (sampled 2026-08-18, trimmed):

```json
{
 "as_of": "2026-08-18T00:24:24.507Z",
 "query": {
  "q": "long_term_debt IS NOT NULL",
  "limit": 2,
  "order": "long_term_debt",
  "dir": "desc",
  "fields": [
   "long_term_debt"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 0,
 "results": []
}
```

## Related signals (Balance sheet)

- [accounts_payable](https://tickerbot.io/docs/signals/accounts_payable.md)
- [assets](https://tickerbot.io/docs/signals/assets.md)
- [book_value](https://tickerbot.io/docs/signals/book_value.md)
- [cash_on_hand](https://tickerbot.io/docs/signals/cash_on_hand.md)
- [current_assets](https://tickerbot.io/docs/signals/current_assets.md)
- [current_liabilities](https://tickerbot.io/docs/signals/current_liabilities.md)
- [equity](https://tickerbot.io/docs/signals/equity.md)
- [equity_attributable_to_noncontrolling_interest](https://tickerbot.io/docs/signals/equity_attributable_to_noncontrolling_interest.md)
- [equity_attributable_to_parent](https://tickerbot.io/docs/signals/equity_attributable_to_parent.md)
- [fixed_assets](https://tickerbot.io/docs/signals/fixed_assets.md)
- [inventory](https://tickerbot.io/docs/signals/inventory.md)
- [liabilities](https://tickerbot.io/docs/signals/liabilities.md)
- [liabilities_and_equity](https://tickerbot.io/docs/signals/liabilities_and_equity.md)
- [noncurrent_assets](https://tickerbot.io/docs/signals/noncurrent_assets.md)
- [noncurrent_liabilities](https://tickerbot.io/docs/signals/noncurrent_liabilities.md)

---

Full catalog: https://tickerbot.io/docs/signals.md · Schema: https://tickerbot.io/docs/schema.md · Interactive: https://tickerbot.io/explore?signal=long_term_debt · HTML: https://tickerbot.io/docs/signals/long_term_debt/
