GET
/
plants
/
{id}
curl --request GET \
  --url http://sandbox.mintlify.com/plants/{id} \
  --header 'Authorization: Bearer <token>'
{
  "name": "<string>",
  "tag": "<string>"
}

The API playground is an interactive environment to make requests and preview an API endpoint.

Autogenerating API pages with OpenAPI will automatically generate API playground. Read more about using OpenAPI with Mintlify here.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

The ID of plant to fetch

Response

200
application/json

Plant response

The response is of type object.