
Welli on the GPT Store
GPT Description
Welcome Message
GPT Prompt Starters
- I have acid reflux when I eat spicy foods. What treatment options would be good for me?
- I'm a long-haul truck driver with chronic back pain. What treatment options would be good for me?
- Help me find a new doctor in Wabash, IN.
- What are the differences between Ozempic and Mounjaro?
GPT Action OpenAPI Spec
{ "openapi": "3.0.3", "info": { "title": "Welli Health Assistant", "description": "A healthcare assistant: find a doctor, discover treatment options, request medications", "version": "1.0.0" }, "servers": [ { "url": "https://app.welli.com" } ], "paths": { "/api/search/drug": { "get": { "operationId": "SearchDrugNames", "summary": "Search for a DrugName by drug name.", "description": "Use the name of a medication to find DrugNames with the Welli link: https://app.welli.com/drug/[drug-name-slug]", "parameters": [ { "name": "searchTerm", "in": "query", "required": true, "schema": { "type": "string", "minLength": 4 } } ], "responses": { "200": { "description": "Successful response", "content": { "application/json": { "schema": { "type": "array", "items": { "type": "object", "properties": { "drugNameID": { "type": "number" }, "drugNameDesc": { "type": "string" } }, "required": [ "drugNameID", "drugNameDesc" ], "additionalProperties": false } } } } }, "default": { "$ref": "#/components/responses/error" } } } }, "/api/drug/{slug}": { "get": { "operationId": "GetDrugInfoBySlug", "summary": "Get drug info by a DrugName slug.", "parameters": [ { "name": "slug", "in": "path", "required": true, "schema": { "type": "string" } } ], "responses": { "200": { "description": "Successful response", "content": { "application/json": { "schema": { "type": "object", "properties": { "linkToRequest": { "type": "string" }, "drugName": { "type": "object", "properties": { "drugNameID": { "type": "number" }, "drugNameDesc": { "type": "string" } }, "required": [ "drugNameID", "drugNameDesc" ], "additionalProperties": false }, "drugs": { "type": "array", "items": { "type": "object", "properties": { "dispensableDrugID": { "type": "string" }, "dispensableDrugDesc": { "type": "string" }, "medStrength": { "type": "string" }, "medStrengthUnit": { "type": "string" }, "doseFormDesc": { "type": "string" }, "routeDesc": { "type": "string" }, "federalLegendCode": { "type": "string" } }, "required": [ "dispensableDrugID", "dispensableDrugDesc", "medStrength", "medStrengthUnit", "doseFormDesc", "routeDesc", "federalLegendCode" ], "additionalProperties": false } }, "details": { "type": "object", "properties": { "documentInformation": { "type": "string" }, "commonBrandName": { "type": "string" }, "missedDose": { "type": "string" }, "phoneticPronunciation": { "type": "string" }, "howToUse": { "type": "string" }, "drugInteractions": { "type": "string" }, "medicalAlert": { "type": "string" }, "notes": { "type": "string" }, "overdose": { "type": "string" }, "precautions": { "type": "string" }, "storage": { "type": "string" }, "sideEffects": { "type": "string" }, "monographTitle": { "type": "string" }, "uses": { "type": "string" }, "otherUses": { "type": "string" } }, "additionalProperties": false } }, "required": [ "linkToRequest", "drugName", "drugs" ], "additionalProperties": false } } } }, "default": { "$ref": "#/components/responses/error" } } } }, "/api/provider/search": { "get": { "operationId": "ProviderSearch", "summary": "Search for a doctor.", "parameters": [ { "name": "name", "in": "query", "required": false, "schema": { "type": "string" } }, { "name": "city", "in": "query", "required": false, "schema": { "type": "string" } }, { "name": "state", "in": "query", "required": false, "schema": { "type": "string", "enum": [ "AK", "AL", "AR", "AS", "AZ", "CA", "CO", "CT", "DC", "DE", "FL", "FM", "GA", "GU", "HI", "IA", "ID", "IL", "IN", "KS", "KY", "LA", "MA", "MD", "ME", "MH", "MI", "MN", "MO", "MP", "MS", "MT", "NC", "ND", "NE", "NH", "NJ", "NM", "NV", "NY", "OH", "OK", "OR", "PA", "PR", "PW", "RI", "SC", "SD", "TN", "TX", "UT", "VA", "VI", "VT", "WA", "WI", "WV", "WY", "ZZ" ] } } ], "responses": { "200": { "description": "Successful response", "content": { "application/json": { "schema": { "type": "array", "items": { "type": "object", "properties": { "npi": { "type": "number" }, "lastName": { "type": "string", "maxLength": 35, "nullable": true }, "firstName": { "type": "string", "maxLength": 20, "nullable": true }, "middleName": { "type": "string", "maxLength": 20, "nullable": true }, "prefix": { "type": "string", "maxLength": 5, "nullable": true }, "suffix": { "type": "string", "maxLength": 5, "nullable": true }, "credential": { "type": "string", "maxLength": 20, "nullable": true }, "gender": { "type": "string", "enum": [ "M", "F" ], "nullable": true }, "address1": { "type": "string", "maxLength": 55, "nullable": true }, "address2": { "type": "string", "maxLength": 55, "nullable": true }, "city": { "type": "string", "maxLength": 40, "nullable": true }, "state": { "type": "string", "enum": [ "AK", "AL", "AR", "AS", "AZ", "CA", "CO", "CT", "DC", "DE", "FL", "FM", "GA", "GU", "HI", "IA", "ID", "IL", "IN", "KS", "KY", "LA", "MA", "MD", "ME", "MH", "MI", "MN", "MO", "MP", "MS", "MT", "NC", "ND", "NE", "NH", "NJ", "NM", "NV", "NY", "OH", "OK", "OR", "PA", "PR", "PW", "RI", "SC", "SD", "TN", "TX", "UT", "VA", "VI", "VT", "WA", "WI", "WV", "WY", "ZZ" ], "nullable": true }, "postalCode": { "type": "string", "maxLength": 20, "nullable": true }, "countryCode": { "type": "string", "maxLength": 2, "nullable": true }, "telephoneNumber": { "type": "string", "maxLength": 20, "nullable": true }, "faxNumber": { "type": "string", "maxLength": 20, "nullable": true } }, "required": [ "npi", "lastName", "firstName", "middleName", "prefix", "suffix", "credential", "gender", "address1", "address2", "city", "state", "postalCode", "countryCode", "telephoneNumber", "faxNumber" ], "additionalProperties": false } } } } }, "default": { "$ref": "#/components/responses/error" } } } } }, "components": { "responses": { "error": { "description": "Error response", "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" }, "code": { "type": "string" }, "issues": { "type": "array", "items": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ], "additionalProperties": false } } }, "required": [ "message", "code" ], "additionalProperties": false } } } } }, "schemas": {} } }
Welli GPT FAQs
Best Alternative GPTs to Welli on GPTs Store
GymStreak Workout Creator
Automatically create home and & gym workouts (Also available as app on the AppStore)
200K+
Welltory AI Coach: Wellness & Lifestyle
Powered by data from your wearables and apps, Welltory AI Coach is your go-to wellness assistant that delivers actionable sleep, fitness, stress, and lifestyle insights and provides science-based answers to your wellbeing questions.
50K+
Ask Dr. Andrew Huberman
Maximize your productivity, physical and mental health with neuroscience. Trained with all the podcast episodes from Huberman Lab.
10K+
Fitness
AI health and fitness coach for personalized workout and nutrition plans.
10K+
Dr. Andrew Huberman AMA
All of the knowledge of the Huberman Lab podcast, in your pocket.
5K+
JournalGPT
Write your daily journal while JournalGPT helps you reason and grow, discover yourself and extracts the most important facts. The extracted facts are stored to a file that you can download and reupload across sessions to keep your journal long term. All your data is under your full control!
1K+
Top 1% Sleep Performance
Guiding hard-working individuals to optimize sleep, blending scientific insights with practical solutions.
1K+
Scientific Search
Summarize about the topic based on scientifically sound information
1K+
Zen Teacher
A Zen sage offering life advice
1K+
Welding and NDT
Advanced AI Expert in welding and NDT, developed on OpenAI.
1K+
Wellitisradio
Supports amateur radio, DXing, COM integration, API setups, and advanced radio systems.
300+
guest reviewer
Friendly Wellington accommodation provider writing guest reviews.
70+
Wellington Spirit Guide
Expert on Wellington's spiritual sites, ley lines, and energy points.
10+
Wellia
Cheerful Fitness Companion
10+
MetSoc Conference Guide
Friendly conference assistant for the Meteorological Society of NZ Annual Conference 21-23 November 2023 in Wellington
10+
Wellif.ai
Your well-being buddy that cares about your health and is here to support you!
4+
Café of Wondrous Wisdom (The Coww)
Waldo Wellington Contestable, maitre d' of the Wondrous Wisdom Café, guiding enlightening conversations.
4+
Nina Kaur
Nina Kaur, a creative and intuitive UI/UX Designer from Wellington, NZ.
4+
NZ Capital Explorer
A guide unveiling Wellington's culture, history, and beauty tailored to your interests.
3+
Removals Wellingborough
Your virtual moving guide for SANTA REMOVALS Wellingborough, specializing in Wellingborough house removals. #CALL TO GET FREE QUOTE NOW: 07930170752
2+