Account Info
Get details about your account: credits remaining, stats, etc..
GET
https://api.apiframe.pro/account
Headers
Name
Value
Content-Type
application/json
Authorization*
Your APIFRAME API Key
Response
{
"email": "[email protected]",
"credits": 12000,
"total_images": 695,
"plan": "starter"
}
Code samples
const axios = require('axios');
let config = {
method: 'get',
maxBodyLength: Infinity,
url: 'https://api.apiframe.pro/account',
headers: {
'Authorization': 'YOUR_API_KEY'
}
};
axios.request(config)
.then((response) => {
console.log(JSON.stringify(response.data));
})
.catch((error) => {
console.log(error);
});
Last updated
Was this helpful?