# Conviction index

- Method: `GET`
- Path: `/conviction-index`
- Tier: Pro
- HTML docs: https://docs.hiddensystems.ai/nebula/reference/get-conviction-index/
- Interactive docs: https://docs.hiddensystems.ai/nebula/api/#endpoint=get-conviction-index

## Description

Returns Nebula's 0–100 community-conviction index for one resolved asset. Asset selectors support equities, commodities, indices, and crypto assets returned by GET /assets; commodity and index IDs use asset_class=equity.

## cURL Example

```bash
curl --get \
  --url 'https://nebula-api.hiddensystems.ai/api/v1/public/conviction-index' \
  --data-urlencode 'asset_id=NVDA' \
  --data-urlencode 'asset_class=equity' \
  --header 'X-API-Key: YOUR_API_KEY'
```

## Path Parameters

No path parameters for this endpoint.

## Query Parameters

- `asset_id` (string, required): Canonical identifier returned by /assets. Stock, commodity, and index IDs are normally ticker or market symbols and use asset_class=equity; crypto IDs are canonical crypto slugs. asset_class is mandatory whenever asset_id is present.
- `asset_class` (string, required, allowed: equity, crypto): Namespace of asset_id, or the market class for endpoints with a class-scoped global view. Stocks, commodities, and indices use equity. Equity is the documented default only where the endpoint description states a default.
- `hours` (integer, optional, default: 720): Lookback window in hours.
- `granularity` (string, optional, allowed: 1h, 2h, 4h, 12h, 1d): Requested time-series bucket size. When omitted, the service chooses a bucket size appropriate for the lookback window.

## Response

OK

- `series` (array<object>, required): Chronologically ordered observations.
- `series[].index` (number (double), required): Nebula index value on a 0–100 scale.
- `series[].timestamp` (string (date-time), required): UTC RFC 3339 timestamp for the observation or bucket start.

Media type: `application/json`

## JSON Response

```json
{
  "series": [
    {
      "index": 67.4,
      "timestamp": "2026-08-07T15:00:00Z"
    }
  ]
}
```
