curl --request GET \
--url https://www.fetchserp.com/api/v1/moz \
--header 'Authorization: Bearer <token>'
{
"data": {
"results": {
"domain": "<string>",
"domain_authority": 123,
"linking_root_domains": 123,
"ranking_keywords": 123,
"spam_score": "<string>",
"top_pages": [
{
"url": "<string>",
"page_authority": 123
}
],
"top_linking_domains": [
{
"domain": "<string>",
"domain_authority": 123
}
],
"top_ranking_keywords": [
{
"keyword": "<string>",
"rank": 123
}
],
"top_search_competitors": [
{
"domain": "<string>",
"domain_authority": 123,
"visibility": "<any>"
}
],
"keywords_by_estimated_clicks": [
{
"keyword": "<string>",
"visibility": 123
}
],
"top_featured_snippets": [
{
"keyword": "<string>",
"snippet_type": "<string>"
}
],
"branded_keywords": [
{
"keyword": "<string>",
"volume": 123
}
],
"keyword_ranking_distribution": [
{
"rank_range": "<string>",
"keyword_count": 123
}
],
"top_questions": [
{
"question": "<string>",
"relevance": "<any>"
}
],
"discovered_lost_links": {
"total_discovered": 123,
"total_lost": 123,
"net_change": 123,
"date_range": "<string>",
"daily_data": {
"discovered": [
123
],
"lost": [
123
],
"dates": [
"<string>"
]
}
},
"scraped_at": "<string>"
}
}
}
curl --request GET \
--url https://www.fetchserp.com/api/v1/moz \
--header 'Authorization: Bearer <token>'
{
"data": {
"results": {
"domain": "<string>",
"domain_authority": 123,
"linking_root_domains": 123,
"ranking_keywords": 123,
"spam_score": "<string>",
"top_pages": [
{
"url": "<string>",
"page_authority": 123
}
],
"top_linking_domains": [
{
"domain": "<string>",
"domain_authority": 123
}
],
"top_ranking_keywords": [
{
"keyword": "<string>",
"rank": 123
}
],
"top_search_competitors": [
{
"domain": "<string>",
"domain_authority": 123,
"visibility": "<any>"
}
],
"keywords_by_estimated_clicks": [
{
"keyword": "<string>",
"visibility": 123
}
],
"top_featured_snippets": [
{
"keyword": "<string>",
"snippet_type": "<string>"
}
],
"branded_keywords": [
{
"keyword": "<string>",
"volume": 123
}
],
"keyword_ranking_distribution": [
{
"rank_range": "<string>",
"keyword_count": 123
}
],
"top_questions": [
{
"question": "<string>",
"relevance": "<any>"
}
],
"discovered_lost_links": {
"total_discovered": 123,
"total_lost": 123,
"net_change": 123,
"date_range": "<string>",
"daily_data": {
"discovered": [
123
],
"lost": [
123
],
"dates": [
"<string>"
]
}
},
"scraped_at": "<string>"
}
}
}
A bearer token that will be supplied within an Authorization
header as bearer <token>
.
The domain to analyze
success
The response is of type object
.