Links intersection - detailing
The SerpstatBacklinksProcedure.getIntersect method gives you a list of backlinks from intersecting donors to the analyzed domain. The data set is similar to the Links intersect report.
Use case: With the SerpstatBacklinksProcedure.getIntersect method, check what domains are referring to the analyzed domain and its competitors.
General request parameters and instructions for using Serpstat API
Request parameters | |||
Parameter | Description | Default | |
id | required | A request id: the response contains the same id. Enter any number (number) or text (string) value | |
method | required | API method name: SerpstatBacklinksProcedure.getIntersect | |
params | required | The object with parameters {...}, it lists all the following parameters and arrays [...] | |
query | required | A domain of the analyzed site. Specify the domain without HTTP, HTTPS, and "/" | |
intersect | required | Domains for comparison | |
page | optional | A page number (number value) | 1 |
size | optional | A number of results (number value) | 100 |
sort | optional | Sorting: * domain_rank - SDR, an indicator of domain authority * links_count1 - number of links for domain # 1 * links_count2 - number of links for domain # 2 * links_count3 - number of links for domain # 3 | |
order | optional | Order: * asc - in the ascending order * desc - in the descending order | desc |
complexFilter | optional | Data filtering, entered as arrays [...] * field - filter parameter Available filtering: * domain_rank - SDR (Serpstat Domain Rank), an indicator of domain authority * links_count1 - number of links for domain # 1 * links_count2 - number of links for domain # 2 * links_count3 - number of links for domain # 3 * compareType - filter parameter: The first square brackets list the "OR" conditions. The second within the first are the "AND" conditions. |
Response parameters | |
Parameter | Description |
id | Response id corresponds the request id |
result | Contains the answer |
data | Array with data |
domain | Analyzed domain |
Links count for domain #1 | Number of links to domain #1 |
Links count for domain #2 | Number of links to domain #2 |
Links count for domain #3 | Number of links to domain #3 |
SDR | Serpstat Domain Rank |
summary_info | Object with data |
page | Page number |
total | Number of results for the request |
count | Number of results in this answer |
left_lines | Left credits of lines for your pricing plan |
sort | What data are sorted by |
order | Data sorted: * asc - in the ascending order * desc - in the descending order |
API credits are spent at 1 credit per line. Part of the API response for which you spend 1 credit:
{
"Domain": "hunter.io",
"SDR": 62,
"Links count for domain #1 gepur.com": 2,
"Links count for domain #2 klubok.com": 5,
"Links count for domain #3 issaplus.com": 0
}
{
"id": 1,
"method": "SerpstatBacklinksProcedure.getIntersect",
"params": {
"query": "gepur.com",
"sort": "anchor",
"order": "desc",
"page": 1,
"size": 2,
"intersect": ["klubok.com", "issaplus.com"],
"complexFilter":[
[
{
"field": "domain_rank",
"compareType": "gte",
"value": [
"1"
]
},
{
"field": "links_count1",
"compareType": "gte",
"value": [
"1"
]
},
{
"field": "links_count2",
"compareType": "gte",
"value": [
"1"
]
}
]
]
}
}
{
"id": "1",
"result": {
"data": [
{
"Domain": "ain.ua",
"SDR": 64,
"Links count for domain #1 gepur.com": 3,
"Links count for domain #2 klubok.com": 2,
"Links count for domain #3 issaplus.com": 0
},
{
"Domain": "hunter.io",
"SDR": 62,
"Links count for domain #1 gepur.com": 2,
"Links count for domain #2 klubok.com": 5,
"Links count for domain #3 issaplus.com": 0
}
],
"summary_info": {
"left_lines": 999958,
"page": 1,
"count": 2,
"total": 178,
"sort": "domain_rank",
"order": "DESC"
}
}
}