Domains

Domains

Methods description

The list method allows you to get a list of the domains

Request:

{site_path}/{lang}/api/domain/list

GET parameters list:

filter array Allows filtering data by all available fields
fields string Allows to select only the specified fields from all available
sort string Allows you to sort asc and desc entities by all available fields
page int Allows you to pass the page number of the list of entities

List of all available fields

id int Domain ID
name string Name
lastDay string Last used

Response

The response is transmitted in JSON format. List of response fields:

result array List of entities based on query parameters
_links array List of navigation links. May contain the following elements:
  • self - contains a link to the current page of the list
  • first - contains a link to the first page of the list
  • last - contains a link to the last page of the list
  • prev - contains a link to the previous page of the list
  • next - contains a link to the next page of the list
_meta array Information on list navigation. Contains elements:
  • totalCount - total number of available entities considering all selected parameters
  • pageCount - the sequence number of the entity in the list that starts the current page
  • currentPage - number of the current page
  • perPage - number of entities displayed on one page

Request example:

{site_path}/{lang}/api/domain/list?filter[id][in][]=298790598&filter[id][in][]=526628817&sort=name

Response example:

{
  "result": [
    {
      "id": 298790598,
      "name": "hghltd.yandex.net",
      "lastDay": 20200508
    },
    {
      "id": 526628817,
      "name": "www.google.com",
      "lastDay": 20201118
    }
  ],
  "_links": {
    "self": {
      "href": "{site_path}/{lang}/api/domain/list?filter%5Bid%5D%5Bin%5D%5B0%5D=298790598&filter%5Bid%5D%5Bin%5D%5B1%5D=526628817&sort=name&page=1"
    }
  },
  "_meta": {
    "totalCount": 2,
    "pageCount": 1,
    "currentPage": 1,
    "perPage": 20
  }
}