| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 | [role="xpack"][testenv="basic"][[get-basic-status]]=== Get basic status API++++<titleabbrev>Get basic status</titleabbrev>++++This API enables you to check the status of your basic license.[discrete]==== Request`GET /_license/basic_status`[discrete]==== DescriptionIn order to initiate a basic license, you must not currently have a basiclicense.For more information about the different types of licenses, seehttps://www.elastic.co/subscriptions.==== AuthorizationYou must have `monitor` cluster privileges to use this API.For more information, see <<security-privileges>>.[discrete]==== ExamplesThe following example checks whether you are eligible to start a basic:[source,console]------------------------------------------------------------GET /_license/basic_status------------------------------------------------------------Example response:[source,console-result]------------------------------------------------------------{  "eligible_to_start_basic": true}------------------------------------------------------------// TESTRESPONSE[s/"eligible_to_start_basic": true/"eligible_to_start_basic": $body.eligible_to_start_basic/]
 |