GET
https://www.neurotronix.store/api/v1/products/list?search=chatgpt-paid-plus-plan--1-month
Response chứa:
id - ID sản phẩm
name - Tên sản phẩm
plans[] - Danh sách gói: id, name, price, sale_price, fields[]
Thông tin sản phẩm này:
Product ID:
43
Slug:
chatgpt-paid-plus-plan--1-month
Plans:
ID: 348 - Chatgpt Plus shared | Single device
ID: 349 - Chatgpt Plus Private | New account
ID: 350 - Chatgpt Plus Private | Old account renewal
Sample code:
curl "https://www.neurotronix.store/api/v1/products/list" \
-H "X-API-Key: sk_live_your_api_key_here" \
-H "X-API-Secret: sk_secret_your_api_secret_here"
POST
https://www.neurotronix.store/api/v1/orders/create
Request Body:
{
"items": [
{
"plan_id": 348,
"quantity": 1,
"fields": {
"field_key": "field_value"
}
}
],
"coupon_code": ""
}
Các gói có thể mua:
ID: 348
Chatgpt Plus shared | Single device
$3.50
ID: 349
Chatgpt Plus Private | New account
$7.00
ID: 350
Chatgpt Plus Private | Old account renewal
$10.00
Sample code:
curl -X POST "https://www.neurotronix.store/api/v1/orders/create" \
-H "Content-Type: application/json" \
-H "X-API-Key: sk_live_your_api_key_here" \
-H "X-API-Secret: sk_secret_your_api_secret_here" \
-d '{"items":[{"plan_id":348,"quantity":1}]}'
GET
https://www.neurotronix.store/api/v1/orders/status?trans_id={trans_id}
Parameters:
trans_id - Mã giao dịch từ kết quả tạo đơn
Response chứa:
order - Order information
delivery.items - Delivery details
status - pending, processing, completed, cancelled
Sample code:
curl "https://www.neurotronix.store/api/v1/orders/status?trans_id=ORD123456" \
-H "X-API-Key: sk_live_your_api_key_here" \
-H "X-API-Secret: sk_secret_your_api_secret_here"