For Agents
Exchange MoreLogin API ID and API Key credentials for a bearer access token that authorises browser profile and automation calls. Single-endpoint OAuth-style token issuance.
Use for: I need to obtain a MoreLogin bearer token from my API ID and API Key, Get the OAuth token required to call MoreLogin profile endpoints, Refresh the MoreLogin access token before it expires, Authenticate against MoreLogin so I can drive anti-detect browser profiles
Not supported: Does not handle browser profile creation, cloud phone control, or proxy management - use for MoreLogin bearer-token issuance only.
Jentic publishes the only available OpenAPI specification for MoreLogin API, keeping it validated and agent-ready. MoreLogin provides anti-detect browser profile management, cloud phones, and automation tooling used for multi-account workflows, ad verification, and QA testing across isolated browser fingerprints. The exposed Open API endpoint exchanges an API ID and API Key for a short-lived bearer token that authorises subsequent calls into MoreLogin's profile management surface. Agents use this token to script profile orchestration without storing long-lived credentials in tool memory.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the MoreLogin API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fmorelogin.com%2Fmorelogin" | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fmorelogin.com%2Fmorelogin" | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with MoreLogin API.
Exchange a MoreLogin API ID and API Key for a bearer access token via the /oauth/token endpoint
Bootstrap authenticated sessions for downstream MoreLogin profile and cloud phone operations
Rotate access tokens on a schedule to keep automation pipelines within MoreLogin token lifetimes
Gate anti-detect browser automation behind a server-side credential exchange instead of embedded keys
Issue scoped tokens for individual agents or workflows that need MoreLogin browser orchestration
Patterns agents use MoreLogin API for, with concrete tasks.
★ Anti-Detect Browser Automation Bootstrap
Exchange MoreLogin API credentials for a bearer token before driving browser profiles for multi-account QA, ad verification, or scraping workflows. The /oauth/token endpoint accepts an API ID and API Key and returns the access token used for all downstream MoreLogin calls. This keeps long-lived secrets out of automation runners and lets each job run on a fresh, time-boxed token.
Call POST /oauth/token with the configured MoreLogin API ID and API Key, capture the returned access token, and attach it as a bearer header on the next MoreLogin profile call.
Token Rotation in CI Pipelines
MoreLogin tokens are short-lived, so CI jobs that orchestrate browser profiles need to refresh credentials between runs. Build automation calls /oauth/token at job start, stores the token in a job-scoped secret, and uses it for the duration of the run only. This prevents stale tokens from breaking long pipelines and avoids checking long-lived API Keys into pipeline configuration.
At pipeline start, request a new MoreLogin bearer token, set it as a masked environment variable, and discard it after the job completes.
Agent-Driven MoreLogin Orchestration via Jentic
An AI agent that needs to drive MoreLogin browser profiles searches Jentic for the MoreLogin token operation, loads the input schema, and executes the call without ever seeing the underlying API ID and API Key. Jentic's your Jentic One instance holds the credentials and returns only the issued bearer token to the agent's context, so the long-lived secret never enters the prompt.
Search Jentic for 'authenticate to MoreLogin', load the /oauth/token operation, and execute it through Jentic to receive the bearer token needed for downstream browser profile calls.
1 endpoints — jentic publishes the only available openapi specification for morelogin api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/oauth/token
Exchange API ID and API Key for a bearer access token
/oauth/token
Exchange API ID and API Key for a bearer access token
What agents get from Jentic-routed access to this vendor.
Setup
Wiring MoreLogin by hand means exchanging your long-lived API ID and key for a short-lived bearer at /oauth/token and refreshing it before it expires. Through Jentic you install once, import the MoreLogin API from the API Directory, store the credentials once, and your agent calls it.
Permission scoping
This spec exposes only token issuance at /oauth/token, so limit the agent to the operation it needs, which is requesting an access token. You choose the operations it may call, so nothing beyond token issuance is included unless you add it.
Credential isolation
Your MoreLogin API ID and key are stored once, encrypted, by your own Jentic One instance and exchanged for the short-lived bearer at execution time. The long-lived key never enters the agent's prompt, logs, or context.
Intent-based discovery
Agents search Jentic by intent such as 'authenticate to MoreLogin' or 'get a MoreLogin access token', and Jentic returns the /oauth/token operation with its input schema, so the agent requests a token without reading MoreLogin's docs.
Alternatives and complements available in the Jentic catalogue.
Specific to using MoreLogin API through Jentic.
Why is there no official OpenAPI spec for MoreLogin API?
MoreLogin does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call MoreLogin API via structured tooling. It is validated against the live API and kept up to date. Get started with Jentic One, the self-hosted execution layer.
What authentication does the MoreLogin API use?
MoreLogin uses bearer token authentication. You first POST your API ID and API Key to /oauth/token, then attach the returned access token as a Bearer header on subsequent calls. Through Jentic, the API ID and API Key live in the encrypted vault and only the short-lived bearer token reaches the agent context.
Can I manage browser profiles with the MoreLogin API spec on Jentic?
The OpenAPI spec currently covers the /oauth/token credential exchange only. Profile management calls authenticate with the bearer token returned by that endpoint, but their schemas are not yet in this spec. Use the token from /oauth/token with MoreLogin's documented profile routes.
What are the rate limits for the MoreLogin API?
MoreLogin does not publish public rate limits in its OpenAPI spec. Token issuance via /oauth/token is bounded by MoreLogin's account-level fair-use policy, so agents should cache the returned access token for its lifetime instead of re-requesting on every call.
How do I authenticate to MoreLogin through Jentic?
Run pip install jentic, then search 'authenticate to MoreLogin' to find the /oauth/token operation, load its schema, and execute. Jentic injects the API ID and API Key from your vault and returns the bearer token to your agent.
Is the MoreLogin API free?
MoreLogin offers a free tier with paid plans for higher profile counts and team features. The API itself is included with the platform subscription; pricing is per-account, not per-call.
Can I limit what my agent is allowed to do with the MoreLogin API?
Yes. Because Jentic One is self-hosted, your own rules decide which MoreLogin operations and credentials the agent may use. This spec exposes only token issuance at POST /oauth/token, so you can restrict the agent to requesting an access token and nothing else. Since you choose the operations it may call, no capability beyond that credential exchange is available unless you explicitly add it.
GET STARTED