Plans & Pricing Help API Docs SendGrid Labs
Menu

API Docs

POST /v2/apps/:app_id/verify

Create your verification file or DNS TXT record—use the app_id as your verification token—then tell loader.io to verify your app:

curl -X POST https://api.loader.io/v2/apps/:id/verify \
     -H 'loaderio-auth: API_KEY' \
     -d method=http

Example response, successful verification:

{
    "app_id": "98e9b2f9ccc6de07ca5997413861425a",
    "message": "success"
}

Example response, failed verification:

{
    "app_id": "98e9b2f9ccc6de07ca5997413861425a",
    "errors": [
        "can't verify domain www.gonnacrushya.com"
    ], 
    "message": "error"
}