Account Info
Retrieve your account information, With Active plan, Credit usage information and all.
Requires authentication
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_info": {
"live_call": {
"available": 800,
"total": 800
},
"scheduled_call": {
"available": 800,
"total": 800
}
}
},
{
"name": "Daily 22 may plan",
"plan_type": "monthly",
"price": 150,
"currency": "INR",
"credit_info": {
"live_call": {
"available": 914,
"total": 1000
},
"scheduled_call": {
"available": 981,
"total": 1000
},
"linkedin_live": {
"available": 1000,
"total": 1000
}
}
}
]
}
}
Example request:
curl --location --request GET 'https://api.serphouse.com/account/info' \
--header 'Authorization: Bearer <YOUR_API_KEY>'
Last updated
Was this helpful?