Skip to main content
GET
/
v1
/
profiles
List Profiles
curl --request GET \
  --url https://api.example.com/v1/profiles

List Profiles

Retrieve all profiles for the authenticated account.
tag
string
Filter by tag.
limit
integer
default:"20"
Maximum results (1-100).

Request

curl "https://api.meshbrow.dev/v1/profiles?tag=scraping" \
  -H "Authorization: Bearer mb_live_..."

Response

200
{
  "items": [
    {
      "id": "prof_x9y8z7w6",
      "name": "GitHub Bot",
      "tags": ["github", "scraping"],
      "cookieCount": 24,
      "lastUsedAt": "2026-10-28T09:15:00Z",
      "usageCount": 47
    },
    {
      "id": "prof_a1b2c3d4",
      "name": "LinkedIn Scraper",
      "tags": ["linkedin", "scraping"],
      "cookieCount": 18,
      "lastUsedAt": "2026-10-27T16:30:00Z",
      "usageCount": 12
    }
  ],
  "hasMore": false,
  "total": 2
}