BankConv

API Documentation

Check out our API documentation to learn how to use our API to convert bank statements from PDF to Excel, CSV and other formats.

Account information

This endpoint let you retrieve your account information, subscription status as well as total and remaining credits.

Method GET
URL: https://bankconv.com/api/v1/user 
Headers: 'Authorization: Bearer {API_TOKEN}'

Response Body

{
	"data": {
		"user": {
			"id": 1,
			"firstname": "John",
			"lastname": "Doe",
			"email": "[email protected]",
			"emailVerified": true
		},
		"credits": {
			"remaining": 500,
			"total": 1000
		},
		"subscription": {
			"status": "active",
			"plan": "Professional"
		}
	}
}