To check the fee_type of a lab, you typically need to look at the lab's metadata or description where the fee_type is specified. This information is usually included in the lab's details, which may be displayed on a website or in a documentation file.
For example, in a structured format, you might see something like this:
fee_type: "free" # or "pro"
If you're accessing this information programmatically, you would need to parse the relevant data structure (like JSON or YAML) that contains the lab details to find the fee_type field.
If you're using a specific platform or tool, please refer to its documentation for the exact method to access lab details.
