Sitemaps API for developers

This service is still in the BETA and is not a definitive version.

List your sitemaps

.Maui API to view your sitemaps.

POSTGET *
https://api.dotmaui.com/client/1.0/sitemaps/

Parameters

Field Type Description Required
apikey String

.Maui Api key

True

cmd String

Currently only the LS command is supported to display sitemaps (max 500)

True

limit String

Takes two numeric arguments separated by comma (ex: 10,10). The first argument specifies the offset of the first sitemap to return, and the second specifies the maximum number of sitemaps to return. Default is 0,500.

False

beauty Boolean

Format your JSON to make it more readable. Default is false.

False

 

Success 200 - Default Mode

It will be a JSON string

HTTP/1.1 200 OK         
{
    "sitemaps": [
        {
            "webUrl": "https://sitemap-generator.dotmaui.com/3ce0102b-5a36-4049-ac29-5404e3b6770a.html",
            "UID": "3ce0102b-5a36-4049-ac29-5404e3b6770a",
            "site": "https://cdn.dotmaui.com",
            "status": 2
        },
        {
            "webUrl": "https://sitemap-generator.dotmaui.com/44313660-2d29-4a95-a6e2-0f3714acf198.html",
            "UID": "44313660-2d29-4a95-a6e2-0f3714acf198",
            "site": "https://api.dotmaui.com",
            "status": 2
        },
        {
            "webUrl": "https://sitemap-generator.dotmaui.com/7f1a9c4c-d2e4-4d58-8ad5-254566fea714.html",
            "UID": "7f1a9c4c-d2e4-4d58-8ad5-254566fea714",
            "site": "https://sitemap-generator.dotmaui.com",
            "status": 2
        }
    ]
}

Single sitemap operations

.Maui Sitemaps API to get information or delete your sitemaps.

POSTGET *
https://api.dotmaui.com/client/1.0/sitemaps/{UID}/

The UID of the requested sitemap must be entered in the url, instead of {UID}.

Parameters

Field Type Description Required
apikey String

.Maui Api key

True

cmd String

Supports del value of deleting the specified sitemap or the info value to get information about the specified sitemap. Default is info.

False

beauty Boolean

Format your JSON to make it more readable. Default is false.

False

 

Success 200 - Default Mode

It will be a JSON string

HTTP/1.1 200 OK         
{
    "webUrl": "https://sitemap-generator.dotmaui.com/3ce0102b-5a36-4049-ac29-5404e3b6770a.html",
    "UID": "3ce0102b-5a36-4049-ac29-5404e3b6770a",
    "creationDate": "2020-05-19 00:09:01",
    "endDate": "2020-05-19 00:09:09",
    "site": "https://cdn.dotmaui.com",
    "status": 2,
    "pagesFound": 16,
    "pagesIndexed": 16,
    "pagesQueued": 0,
    "brokenLinks": 0,
    "parts": 1,
    "sleepSeconds": 0
}
HTTP/1.1 200 OK         
{
    "resultCode": "OK",
    "resultMessage": "Item deleted successfully"
}

* Only for premium users.