API GoLogin

Number of APIs: 53

You can connect to API and integrate GoLogin with other programs to, for instance, automate some processes by using self-written bots. Keep in mind that you must be able to program on your own to use our API.

GoLogin API packages that support programming languages:
- Node JS, supports puppeteer https://github.com/gologinapp/gologin
- Python, supports puppeteer and selenium https://github.com/gologinapp/pygologin
This documentation describes APIGologin methods and functions for calling the method.

GoLogin NPM package, supported by puppeteer

npm i gologin

https://www.npmjs.com/package/gologin

About authorization

* For authorization, you must create your access token (located in settings - API Documentation) and specify it in the Bearer Token.

Rate limits

  • Free and trial plans: 300 requests per 1 minute
  • Other plans: 1200 requests per 1 minute

Orbita Extensions API

You can write your own extension and from it get access to id profile and profile name!

Just write in the extension console

chrome.gologin.getProfileID((id) => {
    ...
});
chrome.gologin.getProfileName((name) => {
    ...
});

FAQ

This section contains the most frequently asked questions about APIs and requests

  1. Profile tags - Change tag POST {{API_BASE_URL}}/tags/{{TAG_ID}}

  2. Profile tags - Delete tag from profiles DELETE {{API_BASE_URL}}/tags/{{TAG_ID}}/removeFromProfiles

  3. Profile tags - Search tag on title GET {{API_BASE_URL}}/tags/search?q=tag_name

  4. Profile tags - Add tag to profiles POST {{API_BASE_URL}}/tags/addToProfiles

  5. Profile operations - List profiles GET {{API_BASE_URL}}/browser/v2

  6. Profile operations - Get profile data GET {{API_BASE_URL}}/browser/{{PROFILE_ID}}

  7. Profile operations - Create profile POST {{API_BASE_URL}}/browser

  8. Profile operations - Update profile PUT {{API_BASE_URL}}/browser/{{PROFILE_ID}}

  9. Profile operations - Clone profile POST {{API_BASE_URL}}/browser/{{PROFILE_ID}}/clone

  10. Profile operations - Delete profile DELETE {{API_BASE_URL}}/browser/{{PROFILE_ID}}