跳转到内容

Agency(事务所)

Agency 是声优所属事务所、经纪公司或管理组织资源。

主属性描述 Agency 自身。本轮只记录全局稳定的最小字段。

FieldTypesupportedDescription
idstringkey 生成的稳定公开 ID;客户端应视为 opaque。
keystring全局唯一稳定 key,用于过滤和跨域引用。
namestring规范名称。

其他字段会在公开契约稳定后再补充。

公开 OpenAPI 规范是路由契约的事实来源。

MethodPathDescription
GET/api/v1/agencies列出 Agencies。
GET/api/v1/agencies/{key}通过 key 获取单个 Agency。

列表路由支持 cursor 分页:

QueryTypeDescription
limitnumber每页数量。默认 100,最大 500
cursoropaque string上一次响应 meta.nextCursor 返回的 opaque cursor。

列表响应包含 meta.limitmeta.cursormeta.nextCursormeta.hasMore

{
"id": "agency_aoni_production",
"key": "aoni_production",
"name": "青二プロダクション"
}
{
"data": [
{
"id": "agency_aoni_production",
"key": "aoni_production",
"name": "青二プロダクション"
}
],
"meta": {
"limit": 100,
"cursor": "",
"nextCursor": "",
"hasMore": false
}
}