1. API Reference
  • Get Started
  • API Reference
    • Create Task
      • Image To Video
      • Instruct Edit
      • Try-On (Apparel)
      • Try-On (Accessories)
      • Lifestyle Scene
      • Swap Fashion Model
      • Background Replacer
      • Segment image by prompt
    • Get Upload URL
      GET
    • Upload File
      PUT
    • List Preset Materials
      GET
    • Retrieve Generation Task Status
      GET
    • Download Generated Result
      GET
    • Retrieve API Credit Usage
      GET
  • Help
    • Download File Samples
    • Error Codes
    • FAQ
  1. API Reference

Retrieve API Credit Usage

GET
https://api.sellerpic.ai/v1/api/usage
Please ensure you have sufficient credits in your account before creating a task.
Credit Usage Rules
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.sellerpic.ai/v1/api/usage' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'Content-Type: application/json'
Response Response Example
200 - Example 1
{
  "code": 0,
  "data": {
    "remaining": 0,
    "total": 0,
    "usage": 0
  },
  "msg": "string",
  "success": true,
  "traceId": "string"
}

Request

Header Params
Authorization
string 
required
Example:
Bearer YOUR_API_KEY
Content-Type
string 
required
Example:
application/json

Responses

🟢200OK
*/*
OK
Body
code
integer <int32>
required
Result code, where 0 indicates success and non-0 indicates an error.
Please refer to Error Codes
data
object (ApiCreditUsage) 
optional
API credit usage information
remaining
integer <int32>
required
Remaining credits
total
integer <int32>
required
Total credits
usage
integer <int32>
required
Usage credits
msg
string 
optional
Description of the result, providing additional context or information about the operation outcome.
success
boolean 
required
traceId
string 
required
Trace ID for tracking the request across distributed systems.
🟠401Unauthorized
🟠403Forbidden
🟠404Record Not Found
Previous
Download Generated Result
Next
Download File Samples
Built with