List browser profiles
tinyfish/profile-listList the saved browser profiles on the account.
- call
- Price: —
- TinyFish
- 5 min
Overview
Returns the named browser profiles configured for the account. A profile is a reusable browsing identity: it pins a stable browser fingerprint, optionally routes traffic through a proxy in a chosen country, and keeps state for the sites it has visited, so repeat automated visits look like the same returning browser rather than a new one each time. Listing profiles is how a caller finds the identifier to attach to a later automation run.
The profiles on the account, each with its id, name, proxy country, fingerprint seed, and creation time.
Example
Use your own API key and a saved idempotency key for each new job. Replace image or media placeholders with your own publicly reachable HTTPS URLs. Keep the same key and request body when recovering a timeout.
# Set once per job; reuse this key and the identical body after a timeout.
: "${AGENTSKY_IDEMPOTENCY_KEY:?Set a unique, saved key for this job}"
curl --fail-with-body https://gateway.agentsky.dev/v1/run \
-H "authorization: Bearer $AGENTSKY_API_KEY" \
-H "content-type: application/json" \
-H "Idempotency-Key: $AGENTSKY_IDEMPOTENCY_KEY" \
-d '{"provider":"tinyfish","endpoint":"profile-list","input":{}}'
# If status is READY/RUNNING, poll GET /v1/runs/{runId} with the same API key.Pricing
— per call using your plan when signed in. Read the final customer charge from price.amount.value after the run finishes. A RUNNING response is not the final bill.
