メインコンテンツへスキップ
GET
/
v2
/
{entity}
/
{project}
/
scores
Score の一覧取得
curl --request GET \
  --url https://api.example.com/v2/{entity}/{project}/scores \
  --header 'Authorization: Basic <encoded-value>'
[
  {
    "score_id": "<string>",
    "scorer": "<string>",
    "value": 123,
    "evaluation_run_id": "<string>",
    "wb_user_id": "<string>"
  }
]

承認

Authorization
string
header
必須

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

パスパラメータ

entity
string
必須
project
string
必須

クエリパラメータ

evaluation_run_id
string | null

evaluation run ID でフィルタリング

limit
integer | null

返すスコアの最大数

offset
integer | null

スキップするスコア数

レスポンス

JSONL 形式のデータストリーム

score_id
string
必須

スコアの ID

scorer
string
必須

scorer への参照(weave:// URI)

value
number
必須

スコアの値

evaluation_run_id
string | null

このスコアが関連付けられている Evaluation run の ID

wb_user_id
string | null

このフィールドは直接設定しないでください。サーバーが自動的に値を設定します。