# Retrieve words from MedDict Database from pattern **GET /words** Get results of word from input, which included the definitions, illustration, etc. The pattern follows the following Regular Expression ```Python import re pattern = f"^.*{pattern}.*$" ``` Which means it will match any word that **INCLUDES** the pattern. ## Servers - Local development API: http://localhost:5000 (Local development API) - Production API: https://api.meddict-vinuni.com (Production API) ## Parameters ### Query parameters - **lang** (string) Source language to search the pattern on. - **word** (string) The pattern to search for. ## Responses ### 200 OK #### Body: application/json (array[object]) - **id** (integer) - **en** (string) - **en_type** (string) - **vn** (string) - **vn_type** (string) ### 400 The request is not following the convention. [Powered by Bump.sh](https://bump.sh)