Account Info

Retrieve your account information, With Active plan, Credit usage information and all.

Get a account information

GET https://api.serphouse.com/account/info

Headers

Name
Type
Description

Authorization*

Bearer <YOUR_API_KEY>

{
    "status": "success",
    "msg": "",
    "results": {
        "email": "[email protected]",
        "name": "tester",
        "api_key": "zHF0qEUMwZAWWTB3AwzYLmudfdfdLKvabDmxQV6lq86phvoaoZdVyI59osQze",
        "plan": [
            {
                "name": "new 19 may custom plan",
                "plan_type": "custom",
                "price": 140,
                "currency": "INR",
                "credit_available": 1600,
                "credit_total": 1600
            },
            {
                "name": "Daily 22 may plan",
                "plan_type": "monthly",
                "price": 150,
                "currency": "INR",
                "credit_available": 1895,
                "credit_total": 2000
            }
        ]
    }
}

Example request:

curl --location --request GET 'https://api.serphouse.com/account/info' \
--header 'Authorization: Bearer <YOUR_API_KEY>'

Last updated

Was this helpful?