Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
JavaScript
const options = {method: 'POST', headers: {'X-API-KEY': '<api-key>'}}; fetch('https://adp.laiye.com/open/agentic_doc_processor/{tenant_name}/v1/user/payment', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "code": "success", "message": "", "data": { "total_credits": 0, "used_credits": 0, "expired_credits": 0, "remaining_credits": 0 } }
无需请求体,根据 X-API-KEY 获取当前用户积分信息。
用户接入 OpenAPI 的令牌,在应用 API 中查看。
租户名称,默认 laiye。
用户积分信息。
业务码。成功通常为 success 或 200。
返回信息。
详细信息,默认为空。
Show child attributes