### Plant detail Source: https://documenter.getpostman.com/view/24599534/2s93z5A4v2#intro Retrieves detailed information about a specific plant species. Use the plant ID to get comprehensive data. ```APIDOC ## GET Plant detail ### Description Retrieves detailed information about a specific plant species using its ID. ### Method GET ### Endpoint /v3/plants/{plantId} ### Parameters #### Path Parameters - **plantId** (string) - Required - The ID of the plant. ``` -------------------------------- ### Get chatbot conversation Source: https://documenter.getpostman.com/view/24599534/2s93z5A4v2 Retrieves the history of a chatbot conversation. ```APIDOC ## GET /v3/chatbot/conversation/{conversation_id} ### Description Retrieves the history of a specific chatbot conversation. ### Method GET ### Endpoint /v3/chatbot/conversation/{conversation_id} ### Parameters #### Path Parameters - **conversation_id** (string) - Required - The unique identifier of the conversation. ### Response #### Success Response (200) - **conversation_history** (array) - A list of messages in the conversation. ``` -------------------------------- ### Authentication Source: https://documenter.getpostman.com/view/24599534/2s93z5A4v2#intro To authenticate your API requests, you must include the `Api-Key` header with your valid API key. Obtain your API key from the Admin Panel. ```APIDOC ## Authentication ### Description To use the API, you need to provide an `Api-Key` header with your API key. ### Method All requests require authentication. ### Headers - **Api-Key** (string) - Required - Your unique API key. ``` -------------------------------- ### Create identification Source: https://documenter.getpostman.com/view/24599534/2s93z5A4v2 Initiates a new plant identification process by submitting an image. ```APIDOC ## POST /v3/identification ### Description Creates a new plant identification request. ### Method POST ### Endpoint /v3/identification ### Request Body - **images** (array) - Required - A list of image files to identify. - **similar_images** (boolean) - Optional - Whether to include similar images in the response. - **plant_details** (boolean) - Optional - Whether to include detailed plant information. ### Response #### Success Response (200) - **id** (string) - The unique identifier for the identification request. - **status** (string) - The current status of the identification process. ``` -------------------------------- ### Obtain usage info Source: https://documenter.getpostman.com/view/24599534/2s93z5A4v2 Retrieves information about the API usage and limits. ```APIDOC ## GET /v3/usage ### Description Obtains information about the current API usage. ### Method GET ### Endpoint /v3/usage ### Response #### Success Response (200) - **usage** (object) - Details about API usage, such as calls remaining and limits. ``` -------------------------------- ### Plant detail Source: https://documenter.getpostman.com/view/24599534/2s93z5A4v2 Retrieves detailed information about a specific plant. ```APIDOC ## GET /v3/plants/{id} ### Description Retrieves detailed information about a specific plant. ### Method GET ### Endpoint /v3/plants/{id} ### Parameters #### Path Parameters - **id** (string) - Required - The unique identifier of the plant. ### Response #### Success Response (200) - **plant_details** (object) - Detailed information about the plant. ``` -------------------------------- ### Ask chatbot Source: https://documenter.getpostman.com/view/24599534/2s93z5A4v2#intro Initiates a conversation with the Plant.id chatbot. Use this endpoint to ask questions about plants. ```APIDOC ## POST Ask chatbot ### Description Initiates a conversation with the Plant.id chatbot to ask questions about plants. ### Method POST ### Endpoint /v3/chatbot/conversation ### Request Body - **message** (string) - Required - The user's message to the chatbot. ``` -------------------------------- ### Ask chatbot Source: https://documenter.getpostman.com/view/24599534/2s93z5A4v2 Sends a query to the plant identification chatbot. ```APIDOC ## POST /v3/chatbot/ask ### Description Asks a question to the chatbot for plant-related information. ### Method POST ### Endpoint /v3/chatbot/ask ### Request Body - **query** (string) - Required - The user's question for the chatbot. ### Response #### Success Response (200) - **response** (string) - The chatbot's answer to the query. ``` -------------------------------- ### Send feedback Source: https://documenter.getpostman.com/view/24599534/2s93z5A4v2 Allows users to send feedback regarding plant identification. ```APIDOC ## POST /v3/feedback ### Description Sends feedback related to plant identification results. ### Method POST ### Endpoint /v3/feedback ### Request Body - **identification_id** (string) - Required - The ID of the identification request. - **feedback** (string) - Required - The feedback provided by the user. ### Response #### Success Response (200) - **message** (string) - Confirmation message that feedback was sent. ``` -------------------------------- ### Plants search Source: https://documenter.getpostman.com/view/24599534/2s93z5A4v2 Searches for plants based on provided criteria. ```APIDOC ## GET /v3/search ### Description Searches for plants in the database. ### Method GET ### Endpoint /v3/search ### Query Parameters - **query** (string) - Required - The search query string. ### Response #### Success Response (200) - **results** (array) - A list of plants matching the search query. ``` -------------------------------- ### Send feedback Source: https://documenter.getpostman.com/view/24599534/2s93z5A4v2#intro Allows users to send feedback regarding the identification results. This helps improve the accuracy of the service. ```APIDOC ## POST Send feedback ### Description Allows users to submit feedback on the accuracy or quality of plant identification results. ### Method POST ### Endpoint /v3/feedback ### Request Body - **identificationId** (string) - Required - The ID of the identification to provide feedback on. - **feedback** (string) - Required - The user's feedback text. ``` -------------------------------- ### Health assessment Source: https://documenter.getpostman.com/view/24599534/2s93z5A4v2 Performs a health assessment of a plant from an image. ```APIDOC ## POST /v3/health_assessment ### Description Assesses the health of a plant from an image. ### Method POST ### Endpoint /v3/health_assessment ### Request Body - **images** (array) - Required - A list of image files for health assessment. ### Response #### Success Response (200) - **health_assessment** (object) - Details of the plant's health assessment. ``` -------------------------------- ### Send feedback on chatbot conversation Source: https://documenter.getpostman.com/view/24599534/2s93z5A4v2 Allows users to send feedback on chatbot responses. ```APIDOC ## POST /v3/chatbot/conversation/{conversation_id}/feedback ### Description Sends feedback on a specific chatbot conversation. ### Method POST ### Endpoint /v3/chatbot/conversation/{conversation_id}/feedback ### Parameters #### Path Parameters - **conversation_id** (string) - Required - The unique identifier of the conversation. ### Request Body - **feedback** (string) - Required - The feedback provided by the user. ### Response #### Success Response (200) - **message** (string) - Confirmation message that feedback was sent. ``` -------------------------------- ### Retrieve identification Source: https://documenter.getpostman.com/view/24599534/2s93z5A4v2 Retrieves the results of a previously submitted identification request. ```APIDOC ## GET /v3/identification/{id} ### Description Retrieves the results of a specific plant identification request. ### Method GET ### Endpoint /v3/identification/{id} ### Parameters #### Path Parameters - **id** (string) - Required - The unique identifier of the identification request. ### Response #### Success Response (200) - **result** (array) - A list of identified plants and their details. ``` -------------------------------- ### Retrieve identification Source: https://documenter.getpostman.com/view/24599534/2s93z5A4v2#intro Retrieves the results of a previously submitted identification request. Use the identification ID to fetch the analysis. ```APIDOC ## GET Retrieve identification ### Description Retrieves the results of a plant identification request using its ID. ### Method GET ### Endpoint /v3/identifications/{identificationId} ### Parameters #### Path Parameters - **identificationId** (string) - Required - The ID of the identification request. ``` -------------------------------- ### Delete chatbot conversation Source: https://documenter.getpostman.com/view/24599534/2s93z5A4v2 Deletes a specific chatbot conversation. ```APIDOC ## DELETE /v3/chatbot/conversation/{conversation_id} ### Description Deletes a specific chatbot conversation. ### Method DELETE ### Endpoint /v3/chatbot/conversation/{conversation_id} ### Parameters #### Path Parameters - **conversation_id** (string) - Required - The unique identifier of the conversation to delete. ### Response #### Success Response (200) - **message** (string) - Confirmation message of deletion. ``` -------------------------------- ### Delete chatbot conversation Source: https://documenter.getpostman.com/view/24599534/2s93z5A4v2#intro Deletes a specific chatbot conversation and its history. This is useful for managing chat data. ```APIDOC ## DEL Delete chatbot conversation ### Description Deletes a specific chatbot conversation and its associated history. ### Method DELETE ### Endpoint /v3/chatbot/conversation/{conversationId} ### Parameters #### Path Parameters - **conversationId** (string) - Required - The ID of the chatbot conversation to delete. ``` -------------------------------- ### Delete identification Source: https://documenter.getpostman.com/view/24599534/2s93z5A4v2 Deletes a specific identification request and its associated data. ```APIDOC ## DELETE /v3/identification/{id} ### Description Deletes a specific plant identification request. ### Method DELETE ### Endpoint /v3/identification/{id} ### Parameters #### Path Parameters - **id** (string) - Required - The unique identifier of the identification request to delete. ### Response #### Success Response (200) - **message** (string) - Confirmation message of deletion. ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.