Get Status

This request, provided the order id, will return you the status of an order

https://v-numbers.com/api/getNumberStatus?key=&numberId=

Query Params:

  • key

  • numberId

Response example when:

You successfully received an OTP code:

{
    "message": {
        "request_id": "815206736",
        "application_id": 624,
        "country_id": 13,
        "number": "17828195697",
        "sms_code": "768693"
    }
}

The number is on hold:

{
    "message": {
        "request_id": "815206411",
        "application_id": 175,
        "country_id": 5,
        "number": "16186145439",
        "error_code": "wait_sms",
        "error_msg": "Still waiting..."
    }
}

The number is canceled

Errors:

🟡 The Id does not exist:

Wrong Key:

Last updated