Theme switcher

Introduction

Welcome to the BETA Globalr API documentation. This API allows developers to interact with the Globalr system programmatically, providing a set of endpoints and functionalities to manage domains, user accounts, and more.

To switch to the first version you can follow the link https://globalr.com/doc/api

Example implementation in Github

Base URL

Production:

https://globalr.com/api/v2

Language Box

User

This area you can explore endpoints related to user accounts, including authentication, profile management, and billing details.

Domain

Modify Domain records

There are four block of contact information - Owner, Administrative, Technical and Billing. Each block could be updated seperately. While update of any information in some block, whole information of the block must be sent.

For .AM domain in the block of owner you can’t change Name and Last Name or Company Name (in case of organization) information. This part requires printed documents.

If you want send test request you mast send param mode=test

Transfer Domain

Transfer procedure divorced to two type.

  • transfer must be done in GlobalR system
  • transfer from other registrar

In any case more preferable make two request first check domain can be transferred or not (and which way it can be transferеd), second send transfer code.

If domain that must be transferеd registered thru globalr.com, in checking part our system will generate inner transfer code and will send to admin email.

Other ways you must send transfer code, that you get from losing registrar or registry.

Was this section helpful?

What made this section unhelpful for you?

Check transfer type

Retrieve all the branches associated with the account

If "selfSignCode": true it is mean that domain is registered thru globalr.com and must transferred via inner code.

If domain registrar was locked("locStatus": false,) you can’t transfer domain you need first unlock the domain.

And finally you must check "codeTransfer": true, because if this parameter was false, transfer can’t be maked via transfer code.

Header Parameters

Authorizationstring

Path Parameters

domainstring

Response

200
Object

Response Attributes

statusnumber
locStatusboolean
selfSignCodeboolean
textStatusstring
domainstring
textMassagestring
201
Object

Response Attributes

statusnumber
locStatusboolean
selfSignCodeboolean
docTransferboolean
codeTransferboolean
textStatusstring
domainstring
textMassagestring
Was this section helpful?

What made this section unhelpful for you?

GET

/domain/transfer/{domain}

Select
1 2 curl --location --globoff 'https://globalr.com/api/v2/domain/transfer/{domain}' \ --header 'Authorization: Bearer <YOUR-TOKEN>' \

Response

{
  "status": 200,
  "locStatus": false,
  "selfSignCode": true,
  "textStatus": "success",
  "domain": "example.am",
  "textMassage": "Transfer Code for this domain sent to domain admin contact"
}
Was this section helpful?

What made this section unhelpful for you?

Transfer domain

Retrieve a specific branch details

Header Parameters

Authorizationstring

Body Parameters

domainNamestring

Response

200
Object
Was this section helpful?

What made this section unhelpful for you?

POST

/transfer

Select
1 2 3 4 5 curl --location 'https://globalr.com/api/v2/transfer' \ --header 'Authorization: Bearer <YOUR-TOKEN>' \ --data '{ "domainName": "TransferCode" }'

Response

Was this section helpful?

What made this section unhelpful for you?

Prices

This API call get extension prices list.

Header Parameters

Authorizationstring
Content-Typestring

Query Parameters

limitinteger

Limit of extension list

offsetinteger
searchstring

Search name

Response

200
Object

Response Attributes

limitnumber
offsetnumber
countnumber
dataarray

Show child attributes

403
Object

Response Attributes

dataarray
Was this section helpful?

What made this section unhelpful for you?

GET

/prices?limit=20&offset=0&search=

Select
1 2 3 curl --location 'https://globalr.com/api/v2/prices?limit=20&offset=0' \ --header 'Authorization: Bearer ACCESS_TOKEN' \ --header 'Content-Type: application/json'

Response

{
  "limit": 20,
  "offset": 0,
  "count": null,
  "data": [
    {
      "id": 2,
      "name": ".ge",
      "price": 15.8,
      "renew_price": 15.8,
      "transfer_price": 15.8,
      "amount_with_trustee": null,
      "min_registration_year": 1
    }
  ]
}
Was this section helpful?

What made this section unhelpful for you?