curl --request GET \
--url https://api.fireworks.ai/v1/accounts/{account_id}/evaluators \
--header 'Authorization: Bearer <token>'{
"evaluators": [
{
"name": "<string>",
"displayName": "<string>",
"description": "<string>",
"createTime": "2023-11-07T05:31:56Z",
"createdBy": "<string>",
"updateTime": "2023-11-07T05:31:56Z",
"state": "STATE_UNSPECIFIED",
"requirements": "<string>",
"entryPoint": "<string>",
"status": {
"code": "OK",
"message": "<string>"
},
"commitHash": "<string>",
"source": {
"type": "TYPE_UNSPECIFIED",
"githubRepositoryName": "<string>"
},
"defaultDataset": "<string>"
}
],
"nextPageToken": "<string>",
"totalSize": 123
}Lists all evaluators for an account with pagination support.
curl --request GET \
--url https://api.fireworks.ai/v1/accounts/{account_id}/evaluators \
--header 'Authorization: Bearer <token>'{
"evaluators": [
{
"name": "<string>",
"displayName": "<string>",
"description": "<string>",
"createTime": "2023-11-07T05:31:56Z",
"createdBy": "<string>",
"updateTime": "2023-11-07T05:31:56Z",
"state": "STATE_UNSPECIFIED",
"requirements": "<string>",
"entryPoint": "<string>",
"status": {
"code": "OK",
"message": "<string>"
},
"commitHash": "<string>",
"source": {
"type": "TYPE_UNSPECIFIED",
"githubRepositoryName": "<string>"
},
"defaultDataset": "<string>"
}
],
"nextPageToken": "<string>",
"totalSize": 123
}Bearer authentication using your Fireworks API key. Format: Bearer <API_KEY>
The Account Id
The fields to be returned in the response. If empty or "*", all fields will be returned.
Was this page helpful?