Skip to main content

Plans

Please refer to the Authentication document on how to obtain and use an API key.

Available actions & endpoints

Fetching all Plans

GET /v1/plans (Fetch all plans for your reseller account)
URL Parameters
nametypedata typedescription
NoneN/AN/AN/A
Query Parameters
namerequireddata typedescription
NoneN/AN/AN/A
Responses
http codecontent-typeresponse
200application/jsonSee example response
401application/json{"code":401,"message": "Authentication is required to continue"}
Example cURL
 curl -X GET -H "api-key: [YOUR API KEY]" https://api.monitor.insites.com/v1/plans
Example Response
{
"data": [
{
"uuid": "71e8ed9c-2294-464b-bab6-8a00cab77ece",
"reseller_uuid": "4be75552-663b-47d0-9ed6-cdbdf7092d77",
"name": "Default Plan",
"is_default": true,
"mobile_speed": true,
"broken_links": true,
"headings": true,
"spelling": true,
"mobile": true,
"sitemap": true,
"domain_age": true,
"ssl": true,
"downtime": true,
"backlinks": true,
"blog": true,
"target_keywords": true,
"keyword_opportunities": true,
"listings": true,
"reviews": true,
"created_at": "2023-06-14T14:02:20+00:00",
"updated_at": "2023-06-14T14:02:20+00:00"
},
{
"uuid": "f5c1ea20-06fa-42fd-8cec-f47bd23b5497",
"reseller_uuid": "4be75552-663b-47d0-9ed6-cdbdf7092d77",
"name": "Upgraded Plan",
"is_default": false,
"mobile_speed": true,
"broken_links": true,
"headings": true,
"spelling": true,
"mobile": true,
"sitemap": true,
"domain_age": true,
"ssl": true,
"downtime": true,
"backlinks": true,
"blog": true,
"target_keywords": true,
"keyword_opportunities": true,
"listings": true,
"reviews": true,
"created_at": "2023-06-14T14:02:20+00:00",
"updated_at": "2023-06-14T14:02:20+00:00"
}
]
}