Tools API#
API kiem tra trang thai checkpoint cua tai khoan Facebook.
Base URL: https://app.socialking.vn/api/v1
Rate Limit: 15 req/sec
1. Check Checkpoint nhieu Account#
POST /tools/check-accounts
#
Auth: API Key
Request Body:
{
"uids": ["100012345678901", "100098765432101"]
}| Field | Type | Required | Validation |
|---|---|---|---|
uids | string[] | Yes | Min 1 UID, danh sach Facebook UIDs |
Response (200):
{
"success": true,
"data": [
{
"account_id": "account-uuid",
"account_name": "Nguyen Van A",
"account_uid": "100012345678901",
"checkpoint_status": "CLEAN",
"checkpoint_code": null,
"message": "Account is clean",
"old_status": "new",
"new_status": "live"
},
{
"account_id": "account-uuid-2",
"account_name": "Tran Van B",
"account_uid": "100098765432101",
"checkpoint_status": "VERIFY_282",
"checkpoint_code": "282",
"message": "Verify identity checkpoint detected",
"old_status": "live",
"new_status": "die"
}
],
"stats": {
"total": 2,
"clean": 1,
"checkpoint_282": 1,
"checkpoint_956": 0,
"cookies_invalid": 0,
"profile_not_found": 0,
"error": 0
}
}Checkpoint Statuses:
| Status | Mo ta |
|---|---|
CLEAN | Account binh thuong, khong bi checkpoint |
VERIFY_282 | Checkpoint xac minh danh tinh (error 282) |
SECURITY_956 | Checkpoint bao mat (error 956) |
COOKIES_INVALID | Cookie het han hoac khong hop le |
PROFILE_NOT_FOUND | Khong tim thay profile (co the bi vo hieu hoa) |
ERROR | Loi khi kiem tra |