For the complete documentation index, see llms.txt. This page is also available as Markdown.

Add Basic Address

Add Basic address

post
Query parameters
addressstringRequired

TRON address

quota_modestring · enumRequired

Quota mode: no quota limit; TRANSFER_QUOTA|ENERGY_QUOTA: limited by quota. If selected, quota_count is required. See Tron Mate documentation for details.

Possible values:
quota_countinteger · int32Optional

Quota count

expired_atinteger · int64Optional

Expiration time

is_auto_closablebooleanRequired

Auto-close if unused for 72 hours, true: enabled, false: disabled

idle_hoursinteger · int32 · min: 24Optional

Idle time (hours) before auto-close

Default: 72
bandwidth_guaranteebooleanOptional

Whether to enable bandwidth protection

Default: false
remarkstringOptional

Remark

Header parameters
CF-ACCESS-KEYstringRequired

The API access key.

Example: your api key
CF-ACCESS-SIGNstringRequired

The Base64-encoded signature.

Example: signature
CF-ACCESS-TIMESTAMPstringRequired

The UTC request timestamp (e.g. 2008-08-08T08:08:08.888Z).

Responses
200

OK

application/json
codeinteger · int32Optional

Returns 0 on success; all other values indicate errors

msgstringOptional

Error message returned when an error occurs

sub_codestringOptional
sub_msgstringOptional
post/v1/mate/open/basic
POST /v1/mate/open/basic?address=text&quota_mode=UNLIMITED&is_auto_closable=true HTTP/1.1
Host: api.catfee.io
CF-ACCESS-KEY: text
CF-ACCESS-SIGN: text
CF-ACCESS-TIMESTAMP: text
Accept: */*
200

OK

{
  "code": 1,
  "msg": "text",
  "sub_code": "text",
  "sub_msg": "text",
  "data": {
    "id": 1,
    "address": "text",
    "plan_id": 1,
    "plan_name_en": "text",
    "plan_name_zh": "text",
    "plan_subscription_sun": 1,
    "plan_unit_sun": 1,
    "quota_mode": "UNLIMITED",
    "slot_next_billing_timestamp": 1,
    "quantity": 1,
    "used_quantity": 1,
    "quota_count": 1,
    "used_count": 1,
    "quota_start_time": 1,
    "total_transfer_count": 1,
    "total_energy_count": 1,
    "total_slot_fee": 1,
    "total_energy_fee": 1,
    "remark": "text",
    "is_auto_closable": true,
    "idle_hours": 1,
    "bandwidth_guarantee": true,
    "status": "ACTIVE",
    "expired_at": 1,
    "created_at": 1
  }
}

Last updated