1. 账单
AIone API
  • 引言
    • 快速开始
    • 认证方式
    • 错误码说明
    • 定价说明
    • 联系我们
    • 服务质量保障
    • 完整请求案例
    • 关于缓存与成本优化
    • 模型质量监控与保障
    • 关于模型真实性验证
    • 在IDE中使用AIone
    • 网络与连接说明
    • 模型命名与兼容规则
    • Gemini 图片生成
    • Gemini原生接口
  • 聊天(Chat)
    • 基础文本对话
      POST
    • 流式响应
      POST
  • 模型(Models)
    • 获取模型列表
      GET
    • List Models
      GET
  • API Key 管理
    • List Keys
      GET
    • Create Key
      POST
    • Get Key
      GET
    • Update Key
      PUT
    • Delete Key
      DELETE
    • Rotate Key
      PUT
    • Disable Key
      PUT
    • Enable Key
      PUT
  • 用量统计
    • Query Usage
    • Get Dashboard
  • 账单
    • Get Current Plan
      GET
    • Get Billing Account
      GET
    • List Invoices
      GET
  • 数据模型
    • HTTPValidationError
    • DashboardResponse
    • KeyCreateRequest
    • KeyListResponse
    • PlanDetailResponse
    • ModelListResponse
    • KeyResponse
    • InvoiceListResponse
    • KeyRotateResponse
    • BillingAccountResponse
    • UsageRow
    • KeyUpdateRequest
    • ValidationError
    • TechDashboardData
    • ModelInfo
    • BusinessDashboardData
    • DailyTrend
    • TeamCostItem
    • ModelDistribution
  1. 账单

Get Current Plan

GET
/api/v1/billing/plan

请求参数

Authorization

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/v1/billing/plan' \
--header 'Authorization: Bearer <token>'

返回响应

🟢200
application/json
Successful Response
Body

示例
{
    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
    "code": "string",
    "name": "string",
    "models": [
        "string"
    ],
    "rpm_limits": {
        "property1": 0,
        "property2": 0
    },
    "tpm_limits": {
        "property1": 0,
        "property2": 0
    },
    "price_per_1m_tokens": {
        "property1": "string",
        "property2": "string"
    },
    "monthly_fee": "string",
    "sandbox_included": true,
    "sla_tier": "string",
    "status": "string",
    "created_at": "2019-08-24T14:15:22.123Z"
}
修改于 2026-03-30 15:31:45
上一页
Get Dashboard
下一页
Get Billing Account
Built with