Actor Adopte Get Auth Token avatar
Actor Adopte Get Auth Token
Under maintenance

Pricing

Pay per usage

Go to Apify Store
Actor Adopte Get Auth Token

Actor Adopte Get Auth Token

Under maintenance

Developed by

Yann Feunteun

Yann Feunteun

Maintained by Community

Automates login to Adopte.app and extracts authentication tokens. Uses French residential proxies, handles the complete login flow (email/password → refresh token → JWT). The extracted token enables authenticated API requests for profile searching, viewing, messaging, and & other platform features.

0.0 (0)

Pricing

Pay per usage

0

1

0

Last modified

23 days ago

Adopte.app Login → Token Extractor

This Apify Actor logs into adopte.app with your credentials, captures the apiRefreshToken that the web app places on window, then exchanges it for an Auth Token via POST /api/v4/authtokens.
All traffic goes through an Apify Residential FR proxy so it looks like a legit French user session.

Input

keytyperequireddefaultdescription
emailstringAdopte account email
passwordstring (secret)Account password
headlessbooleantrueRun browser UI if you need to debug
proxyConfigurationobjectApify defaultOverride proxy group / country

The complete JSON schema lives in input_schema.json.

Output (dataset item)

{
"success": true,
"apiRefreshToken": "eyJ2ZXJzaW9uIjoxLCJ0eXAiOiJKV1Qi…",
"authToken": "eyJ2ZXJzaW9uIjoxLCJ0eXAiOiJKV1Qi…",
"authtokensStatus": 200
}

authtokensStatus == 200 confirms the Auth Token is valid.

Code style

The repo ships with pre-commit hooks that run

  • ruff-format – opinionated formatter + import sorter
  • ruff --fix – fast linter with autofix
  • black – final style safety net

Run once on the whole repo:

$pre-commit run --all-files

Happy hacking 🚀