Scrapeless API
Dashboard
Dashboard
  1. Browser profiles
  • User
    • Get User Info
      GET
  • Scraping Browser
    • CDP API
    • Browser extensions
      • Upload extension
      • Upgrade extension
      • Delete extension
      • Extension info
      • Extension list
    • Browser profiles
      • Profile list
        GET
      • Profile info
        GET
      • Delete profile
        DELETE
      • Upgrade profile
        PUT
      • Create profile
        POST
    • Connect
      WSS
    • Running sessions
      GET
    • Live URL
      GET
  • Scraping API
    • shopee
      • Actor List
      • Shopee Product
      • Shopee Search
      • Shopee Rcmd
    • br sites
      • Solucoes cnpjreva
      • Solucoes certidaointernet
      • Servicos receita
      • Consopt
    • amazon
      • API Parameters
      • product
      • seller
      • keywords
    • google search
      • API Parameters
      • Google Search:Advanced search parameters(tbs)
      • Google Search
      • Google Images
      • Google Local
      • Google Shopping
      • Google Videos
    • google trends
      • API Parameters
      • AutoComplete
      • Interest Over Time
      • Compared Breakdown By Region
      • Interest By Subregion
      • Related Queries
      • Related Topics
      • Trending Now
    • google flights
      • API Parameters
      • Round trip
      • One way
      • Multi-city
    • google flights chart
      • API Parameters
      • chart
    • google scholar
      • API Parameters(Google Scholar)
      • API Parameters(Google Scholar Author)
      • API Parameters(Google Scholar Cite)
      • API Parameters(Google Scholar Profiles)
      • Google Scholar
      • Google Scholar Author
      • Google Scholar Cite
      • Google Scholar Profiles
    • Scraper Request
      POST
    • Scraper GetResult
      GET
  • Universal Scraping API
    • JS Render Docs
    • JS Render
      POST
    • Web Unlocker
      POST
  • Crawler
    • Scrape
      • Scrape a single URL
      • Scrape multiple URLs
      • Cancel a batch scrape job
      • Get the status of a scrape
      • Get the status of a batch scrape job
      • Get the errors of a batch scrape job
    • Crawl
      • Crawl multiple URLs based on options
      • Cancel a crawl job
      • Get the status of a crawl job
      • Get the errors of a crawl job
  • Public
    • actor status
    • actor status
  1. Browser profiles

Profile list

GET
/browser/profiles
Last modified:2025-07-17 11:36:30
Get profile list

Request

Authorization
Add parameter in header
x-api-token
Example:
x-api-token: ********************
Query Params
name
string 
optional
profile name or id
Example:
test
page
string 
required
page number (1-based)
Example:
1
pageSize
string 
required
number of items per page
Example:
10

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.scrapeless.com/browser/profiles?name=test&page=1&pageSize=10' \
--header 'x-api-token;'

Responses

🟢200Success
application/json
Body
docs
array [object {4}] 
required
profiles
name
string 
required
profile name
count
integer 
required
session launching count
profileId
string 
required
profile id
size
integer 
required
profile size
totalDocs
integer 
required
total profiles
offset
integer 
required
current page offset
limit
integer 
required
current page limit
totalPages
integer 
required
total pages
page
integer 
required
current page
Example
{
    "docs": [
        {
            "name": "test",
            "profileId": "52ba7afe-0174-4754-b3c5-59b9437a9395",
            "createdAt": "2025-07-15T06:12:48.211Z",
            "updatedAt": "2025-07-16T02:32:22.710Z",
            "count": 8,
            "lastModifyAt": "2025-07-16T02:32:22.709Z",
            "size": 41946
        }
    ],
    "totalDocs": 1,
    "offset": 0,
    "limit": 10,
    "totalPages": 1,
    "page": 1,
    "pagingCounter": 1
}
Modified at 2025-07-17 11:36:30
Previous
Extension list
Next
Profile info
Built with