SERPHouseSERPHouse

Account Info

Retrieve your SERPHouse account information, plan details, and credit usage.

Returns account details including email, name, and plan information with credit totals..

Requires authentication → provide your API key as a Bearer token in the Authorization header.

Get Account Information

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

Headers

NameTypeDescription
AuthorizationStringBearer <YOUR_API_KEY>

Returns account details including email, name, API key, and plan information with credit totals.

Example Request

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

Example Response

{  "status": "success",  "msg": "",  "results": {    "email": "[email protected]",    "name": "tester",    "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      }    ]  }}

Last updated on

How is this guide?

On this page