# List AI scoring models

The live AI scoring models available to your organization. Draft models are not returned.
Use a returned `model_id` with `POST /v2/companies/score`. It is stable across re-publish;
`model_version_id` identifies the published version that would score today.

Endpoint: GET /data-api/v2/scoring/models
Security: authorization

## Security:

  - `authorization` (unknown)
    http bearer API_KEY

## Response 200:

  - `200` (unknown)
    Scoring Models Response

## Response 200 fields (application/json):

  - `count` (integer, required)
    Number of live models returned

  - `models` (array, required)

  - `models.model_id` (string)
    Stable model identifier. Pass this to /v2/companies/score.

  - `models.model_name` (string)
    Current name of the model

  - `models.model_version_id` (string)
    The published version that would score today. Changes on every re-publish.

  - `models.version` (integer)
    Per-model version sequence number

## Response 401:

  - `401` (unknown)
    Unauthorized

## Response 401 fields (application/json):

  - `errors` (array)

  - `errors.detail` (string, required)
    Example: The api key provided is not valid

  - `errors.source` (string)

  - `errors.title` (string, required)
    Example: Unauthorized

