# Billing
Used to view the account billing summary
# Account Status
View subscription details for the logged-in user account.
GET /subscription/check/current
Example request
$ curl https://console.radiobridge.com/api/visualization/v1/subscription/check/current
Example response - When not subscribed
{
"subscription": false,
"subscription_name": null
}
Example response - When subscribed
{
"subscription": {
"customer": {
"customer_id": "1584920XXXX14185175",
"display_name": "Deepak Maurya",
"company_name": "",
"first_name": "Deepak",
"last_name": "Maurya",
"salutation": "",
"email": "example@radiobridge.com",
"tags": [],
"website": "",
"ip_address": "107.2.217.98",
"zcrm_account_id": "",
"zcrm_contact_id": "3231575000018772035",
"billing_address": {
"street": "",
"street2": "",
"city": "",
"state": "",
"zip": "",
"country": "U.S.A",
"fax": "",
"phone": "",
"attention": ""
},
"shipping_address": {
"street": "",
"street2": "",
"city": "",
"state": "",
"zip": "",
"country": "U.S.A",
"fax": "",
"phone": "",
"attention": ""
}
},
"card": false,
"amount": 69,
"interval": 3,
"interval_unit": "months",
"next_billing_at": "2022-01-03",
"last_billing_at": "2021-10-03",
"status": "live",
"plan": {
"plan_code": "console-solution-account-quarterly",
"name": "Console Solution Account - Quarterly",
"description": "",
"price": 0,
"tags": [],
"quantity": 1,
"discount": 0,
"total": 0,
"setup_fee": 0,
"tax_id": "1584920000000727179",
"tax_name": "Shopify Sales Tax",
"tax_percentage": 0,
"tax_type": "tax",
"setup_fee_tax_id": "",
"setup_fee_tax_name": "",
"setup_fee_tax_percentage": "",
"setup_fee_tax_type": "",
"setup_fee_tax_exemption_id": "",
"setup_fee_tax_exemption_code": "",
"unit": "EA",
"item_custom_fields": []
},
"addons": [
{
"addon_code": "rbs301-temp-nop-monitoring-fee",
"name": "RBS301-TEMP-NOP Monitoring Fee",
"description": "",
"unit": "",
"price": 1,
"quantity": 3,
"discount": 0,
"total": 9,
"tax_id": "",
"tax_name": "",
"tax_percentage": 0,
"tax_type": "tax",
"is_taxable": "",
"product_exemption_code": "",
"product_exemption_id": "",
"tax_exemption_id": "1584920000000717321",
"tax_exemption_code": "NON-TAXABLE",
"tags": [],
"item_custom_fields": []
},
{
"addon_code": "rbs306-vshb-monitoring-fee",
"name": "RBS306-VSHB Monitoring Fee",
"description": "",
"unit": "",
"price": 10,
"quantity": 2,
"discount": 0,
"total": 60,
"tax_id": "",
"tax_name": "",
"tax_percentage": 0,
"tax_type": "tax",
"is_taxable": "",
"product_exemption_code": "",
"product_exemption_id": "",
"tax_exemption_id": "1584920000000717321",
"tax_exemption_code": "NON-TAXABLE",
"tags": [],
"item_custom_fields": []
}
]
},
"subscription_name": "console-solution-account-quarterly"
}