📄
GPM-Login document
  • Browser fingerprint
    • Địa chỉ IP
    • Timezone
    • Geo location
    • WebRTC IP
    • Hardware: Canvas
    • Hardware: WebGL
    • Hardware: Audio
    • Hardware: CPU,RAM
    • Software:User agent
    • Software: Screen
    • Software: Font
    • Software: Hệ điều hành
    • TCP/IP Fingerprint
  • API document
    • Danh sách profiles
    • Lấy thông tin profile
    • Tạo profile
    • Mở profile
    • Đóng profile
    • Cập nhật profile
    • Xóa profile
    • Danh sách nhóm
  • None-code automation
    • Các block
    • Programming
    • Navigation
    • Element
    • Mouse
    • Keyboard
    • Scroll
    • Other
    • Helper
  • Lỗi thường gặp
    • Không nhận thông số fake
    • Bị xóa file thực thi exe
    • Không kết nối được Proxy / Socks5
    • Profile không lưu dữ liệu
    • Lỗi liên quan cookie
    • Báo đỏ ở một số trang check
    • Không upload được profile lưu tại host
    • Xử lý lỗi: The network location cannot be reached
    • Private server: Tài khoản đang được đăng nhập ở một nơi khác
    • Tài khoản bị logout khỏi google
Powered by GitBook
On this page
  1. API document

Danh sách profiles

API URL

GET: /api/v3/profiles

Params

Tên param
Bắt buộc
Mô tả

group_id

Không

ID group cần lọc (lấy tại api Danh sách nhóm)

page

Không

Số trang (mặc định 1)

per_page

Không

Số profile mỗi trang (mặc định 50)

sort

Không

0 - Mới nhất, 1 - Cũ tới mới, 2 - Tên A-Z, 3 - Tên Z-A

search

Không

Từ khóa profile name

Ví dụ

http://127.0.0.1:19995/api/v3/profiles?group=Ebay&page=1&per_page=100

Response

{
    "success": true,
    "data": [
        {
            "id": "ID_OF_PROFILE",
            "name": "NAME_OF_PROFILE",
            "raw_proxy": "RAW_PROXY",
            "browser_type": "chromium / firefox",
            "browser_version": "BROWSER_VERSISON",
            "group_id": "ID_OF_GROUP",
            "profile_path": "Local path or S3",
            "note": "",
            "created_at": "DATE"
        }
    ],
    "pagination": {
        "total": 7,
        "page": 1,
        "page_size": 100,
        "total_page": 1
    },
    "message": "OK"
}

Last updated 29 days ago