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
-
Profile tags - Change tag POST {{API_BASE_URL}}/tags/{{TAG_ID}}
-
Profile tags - Delete tag from profiles DELETE {{API_BASE_URL}}/tags/{{TAG_ID}}/removeFromProfiles
-
Profile tags - Search tag on title GET {{API_BASE_URL}}/tags/search?q=tag_name
-
Profile tags - Add tag to profiles POST {{API_BASE_URL}}/tags/addToProfiles
-
Profile operations - List profiles GET {{API_BASE_URL}}/browser/v2
-
Profile operations - Get profile data GET {{API_BASE_URL}}/browser/{{PROFILE_ID}}
-
Profile operations - Create profile POST {{API_BASE_URL}}/browser
-
Profile operations - Update profile PUT {{API_BASE_URL}}/browser/{{PROFILE_ID}}
-
Profile operations - Clone profile POST {{API_BASE_URL}}/browser/{{PROFILE_ID}}/clone
-
Profile operations - Delete profile DELETE {{API_BASE_URL}}/browser/{{PROFILE_ID}}