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 | Type | Required | Default value | Value options |
id | A request id: the response contains the same id. Enter any number (number) or text (string) value | int/string | yes |
| Text or number value. For example: 1, test |
method | API method name | string | yes |
| SerpstatBacklinksProcedure.getIntersect |
params | The object with parameters {...}, it lists all the following parameters and arrays [...] |
| yes | ||
query | Domain of the analyzed site. Specify the domain without http / https and «/» | string | yes | The text value of the domain being analyzed. For example: serpstat.com | |
intersect | Domains for comparison | string | yes | klubok.com, issaplus.com | |
page | A page number (number value) | int | no | 1 | any number value |
size | A number of results (number value) | int | no | 100 | number value in the range of 1-1000 |
sort | Sorting the results | string | no | domain_rank - SDR (asc - in the ascending order) | * 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 | Order | string | no | desc | * asc - in the ascending order * desc - in the descending order |
Filter conditions parameters | ||
Parameter | Description | |
complexFilter | 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": "links_count1",
"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": "znaxarenko.mybb.ru",
"SDR": 5,
"Links count for domain #1 gepur.com": 177,
"Links count for domain #2 klubok.com": 3,
"Links count for domain #3 issaplus.com": 0
},
{
"Domain": "speshka.com",
"SDR": 30,
"Links count for domain #1 gepur.com": 61,
"Links count for domain #2 klubok.com": 1,
"Links count for domain #3 issaplus.com": 92
}
],
"summary_info": {
"left_lines": 499945,
"page": 1,
"count": 2,
"total": 229,
"sort": "links_count1",
"order": "DESC"
}
}
}