SEO Fast Audit

FREEMIUM
By DocteurSEO | Updated 8 days ago | Tools
Popularity

9.3 / 10

Latency

597ms

Service Level

98%

Health Check

N/A

README

Every good SEO loves data…

Data shows us what direction we are headed in.

However, there are times when standard SEO tools are not enough so many SEOs turn to APIs.

I am primarily an SEO consultant,
I have developed this api to have on a click an overview of the data.
the number of image, the number of keywords, which CMS used, google analytics is they installed, the pixel facebook
see the meta tags, the tilte etc…
I would add other data,

data returned by the API :

  •     "wordsCounts": number, the estimated number of words 
    
  •     "googleAnalytics": boolean, return true or false if google analytics is installed 
    
  •     "facebookPixel": boolean,  return true or false if pixel facebook  is installed 
    
  •     "wordpress": boolean,  return true or false if the site is not wordpress (it is possible that the developer of the site hides this information) 
    
  •     "shopify": boolean, return true or false if the site is on shopify
    
  •     "prestashop": boolean,  experimentation I did not find a reliable method to detect prestashop sites 
    
  •     "links: object, returns an object with the number of links follow,  nofollow, internal and external 
    

for all other tags, it’s the same pattern

“Tagname”: {
“tag”: “tagName”,
“counts”: 0,
“data”: []
},

Exemple :

 "title": {
            "tag": "title",
            "counts": 1,
            "data": [
                {
                    "text": "H&M offers fashion and quality at the best price",
                    "words": 9
                }
            ]
        },

counts : the number of the tag present in the HTML document, in our example only one title tag
text : we get the text of the tag
words : the number of words, perfect when you want to make statistics with competing sites

The future of API:

How any developer, I am not yet satisfied with the API, I want to make an API, an "OneClick audit "
I plan to add more data and especially an automatic analysis of the different classic problems
how many alternative text are missing, the number of internal and external link, follow and nofolow and more

How to use the SEO API?

/scraper endpoint : you get the text of any selector

javascript axios :

import axios from "axios";

const options = {
  method: 'GET',
  url: 'https://seo-fast-audit.p.rapidapi.com/scraper',
  params: {url: 'https://docteurseo.fr/', selector: 'h1'},
  headers: {
    'x-rapidapi-host': 'seo-fast-audit.p.rapidapi.com',
    'x-rapidapi-key': 'b5b2ec9656msh285edf6f388e087p1f0c5ajsn3b5bb3db591c'
  }
};

axios.request(options).then(function (response) {
	console.log(response.data);
}).catch(function (error) {
	console.error(error);
});

Expected response:

{
    "result": [
        "Ton site en 1ère PAGE Google !"
    ]
}

for root endpoint :

fetch width javascript :

fetch("https://seo-fast-audit.p.rapidapi.com/?url=REPLACE WITH YOUR URL", {
	"method": "GET",
	"headers": {
		"x-rapidapi-host": "seo-fast-audit.p.rapidapi.com",
		"x-rapidapi-key": "YOUR API KEY"
	}
})
.then(response => {
	console.log(response);
})
.catch(err => {
	console.error(err);
});

Expected response:

{
    "result": {
        "wordsCounts": 23,
        "googleAnalytics": false,
        "facebookPixel": false,
        "wordpress": false,
        "shopify": false,
        "prestashop": false,
        "title": {
            "tag": "title",
            "counts": 1,
            "data": [
                {
                    "text": "Google",
                    "words": 1
                }
            ]
        },
        "h1": {
            "tag": "h1",
            "counts": 0,
            "data": []
        },
        "a": {
            "tag": "a",
            "counts": 17,
            "data": [
                {
                    "href": "https://www.google.fr/imghp?hl=fr&tab=wi",
                    "text": "Images",
                    "words": 1
                },
                {
                    "href": "https://maps.google.fr/maps?hl=fr&tab=wl",
                    "text": "Maps",
                    "words": 1
                },
                {
                    "href": "https://play.google.com/?hl=fr&tab=w8",
                    "text": "Play",
                    "words": 1
                },
                {
                    "href": "https://www.youtube.com/?gl=FR&tab=w1",
                    "text": "YouTube",
                    "words": 1
                },
                {
                    "href": "https://news.google.com/?tab=wn",
                    "text": "Actualités",
                    "words": 1
                },
                {
                    "href": "https://mail.google.com/mail/?tab=wm",
                    "text": "Gmail",
                    "words": 1
                },
                {
                    "href": "https://drive.google.com/?tab=wo",
                    "text": "Drive",
                    "words": 1
                },
                {
                    "href": "https://www.google.fr/intl/fr/about/products?tab=wh",
                    "text": "Plus",
                    "words": 1
                },
                {
                    "href": "https://www.google.fr/intl/fr/about/products?tab=wh",
                    "text": " »",
                    "words": 1
                },
                {
                    "href": "https://www.google.fr/history/optout?hl=fr",
                    "text": "Historique Web",
                    "words": 2
                },
                {
                    "href": "/preferences?hl=fr",
                    "text": "Paramètres",
                    "words": 1
                },
                {
                    "href": "https://accounts.google.com/ServiceLogin?hl=fr&passive=true&continue=http://www.google.com/&ec=GAZAAQ",
                    "text": "Connexion",
                    "words": 1
                },
                {
                    "href": "/advanced_search?hl=fr&authuser=0",
                    "text": "Recherche avancée",
                    "words": 2
                },
                {
                    "href": "/services/",
                    "text": "Solutions d'entreprise",
                    "words": 2
                },
                {
                    "href": "/intl/fr/about.html",
                    "text": "À propos de Google",
                    "words": 4
                },
                {
                    "href": "https://www.google.com/setprefdomain?prefdom=FR&prev=http://www.google.fr/&sig=K_Cbn6gG3y8XisxC0Urg8MfrRGpM8%3D",
                    "text": "Google.fr",
                    "words": 1
                },
                {
                    "href": "/intl/fr/policies/privacy/",
                    "text": "Confidentialité",
                    "words": 1
                },
                {
                    "href": "/intl/fr/policies/terms/",
                    "text": "Conditions",
                    "words": 1
                }
            ]
        },
        "img": {
            "tag": "img",
            "counts": 1,
            "data": [
                {
                    "src": "/logos/doodles/2021/seasonal-holidays-2021-6753651837109324-6752733080595605-cst.gif",
                    "alt": "Fêtes de fin d'année"
                }
            ]
        },
        "meta": {
            "tag": "meta",
            "counts": 13,
            "data": [
                {
                    "content": "text/html; charset=UTF-8"
                },
                {
                    "content": "/logos/doodles/2021/seasonal-holidays-2021-6753651837109324-6752733080595605-cst.gif"
                },
                {
                    "property": "twitter:title",
                    "content": "Fêtes de fin d'année"
                },
                {
                    "property": "twitter:description",
                    "content": "Bonnes fêtes de fin d'année ! #GoogleDoodle"
                },
                {
                    "property": "og:description",
                    "content": "Bonnes fêtes de fin d'année ! #GoogleDoodle"
                },
                {
                    "property": "twitter:card",
                    "content": "summary_large_image"
                },
                {
                    "property": "twitter:site",
                    "content": "@GoogleDoodles"
                },
                {
                    "property": "twitter:image",
                    "content": "https://www.google.com/logos/doodles/2021/seasonal-holidays-2021-6753651837109324-2xa.gif"
                },
                {
                    "property": "og:image",
                    "content": "https://www.google.com/logos/doodles/2021/seasonal-holidays-2021-6753651837109324-2xa.gif"
                },
                {
                    "property": "og:image:width",
                    "content": "1000"
                },
                {
                    "property": "og:image:height",
                    "content": "400"
                },
                {
                    "property": "og:url",
                    "content": "https://www.google.com/logos/doodles/2021/seasonal-holidays-2021-6753651837109324-2xa.gif"
                },
                {
                    "property": "og:type",
                    "content": "video.other"
                }
            ]
        },
        "b": {
            "tag": "b",
            "counts": 1,
            "data": [
                {
                    "text": "Recherche",
                    "words": 1
                }
            ]
        },
        "strong": {
            "tag": "strong",
            "counts": 0,
            "data": []
        },
        "h2": {
            "tag": "h2",
            "counts": 0,
            "data": []
        },
        "h3": {
            "tag": "h3",
            "counts": 0,
            "data": []
        },
        "h4": {
            "tag": "h4",
            "counts": 0,
            "data": []
        },
        "h5": {
            "tag": "h5",
            "counts": 0,
            "data": []
        },
        "h6": {
            "tag": "h6",
            "counts": 0,
            "data": []
        },
        "div": {
            "tag": "div",
            "counts": 11,
            "data": [
                {
                    "text": "Recherche",
                    "words": 1
                },
                {
                    "text": " Images",
                    "words": 1
                },
                {
                    "text": " Maps",
                    "words": 1
                },
                {
                    "text": " Play",
                    "words": 1
                },
                {
                    "text": " YouTube",
                    "words": 1
                },
                {
                    "text": " Actualités",
                    "words": 1
                },
                {
                    "text": " Gmail",
                    "words": 1
                },
                {
                    "text": " Drive",
                    "words": 1
                },
                {
                    "text": " Plus",
                    "words": 1
                },
                {
                    "text": " »",
                    "words": 1
                },
                {
                    "text": "Historique Web",
                    "words": 2
                },
                {
                    "text": " | ",
                    "words": 1
                },
                {
                    "text": "Paramètres",
                    "words": 1
                },
                {
                    "text": " | ",
                    "words": 1
                },
                {
                    "text": "Connexion",
                    "words": 1
                },
                {
                    "text": "Solutions d'entreprise",
                    "words": 2
                },
                {
                    "text": "À propos de Google",
                    "words": 4
                },
                {
                    "text": "Google.fr",
                    "words": 1
                }
            ]
        },
        "html": {
            "tag": "html",
            "counts": 1,
            "data": []
        }
    }
}
Followers: 2
Resources:
Product Website
API Creator:
Rapid account: Docteur SEO
DocteurSEO
DocteurSEO
Log In to Rate API
Rating: 5 - Votes: 1