
Alexa on the GPT Store
GPT Description
GPT Prompt Starters
- 오늘 일정 아젠다 확인해줘
- 오늘 받은 이메일들 확인해줘
- 이메일 좀 작성해서 보내줘
- 새로운 일정 캘린더에 추가해줘
- 캘린더에서 일정 삭제 좀 해줘
GPT Action OpenAPI Spec
{ "openapi": "3.0.2", "info": { "title": "Zapier AI Actions for GPT (Dynamic)", "version": "1.0.0", "description": "Equip GPTs with the ability to run thousands of actions via Zapier. (703dcca4c2e24c5ea5e2c717eba11029)", "x-openai-verification-token": "703dcca4c2e24c5ea5e2c717eba11029" }, "servers": [ { "url": "https://actions.zapier.com" } ], "paths": { "/gpt/api/v1/available/": { "get": { "operationId": "list_available_actions", "summary": "List Available Actions", "parameters": [ { "in": "query", "name": "apps", "schema": { "title": "Apps", "description": "Filter actions to a comma separated list of Zapier app names.", "type": "string" }, "required": false, "description": "Filter actions to a comma separated list of Zapier app names." }, { "in": "query", "name": "exact_search", "schema": { "title": "Exact Search", "description": "Filter actions to exact search string of the description (case insensitive).", "type": "string" }, "required": false, "description": "Filter actions to exact search string of the description (case insensitive)." } ], "responses": { "200": { "description": "OK", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/AvailableActionResponseSchema" } } } } }, "description": "List all the currently available actions for the user. If you try to run an action and receive an error\nthat it does not exist, try refreshing this list first.", "security": [ { "AccessPointOAuth": [] } ] } }, "/gpt/api/v1/available/{available_action_id}/run/": { "post": { "operationId": "run_action", "summary": "Run Action", "parameters": [ { "in": "path", "name": "available_action_id", "schema": { "title": "Available Action Id", "type": "string", "pattern": "^[A-Z0-9]{26}$", "example": "01ARZ3NDEKTSV4RRFFQ69G5FAV" }, "required": true, "example": "01ARZ3NDEKTSV4RRFFQ69G5FAV" } ], "responses": { "200": { "description": "OK", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/RunResponse" } } } }, "400": { "description": "Bad Request", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/ErrorResponse" } } } } }, "description": "Run an available action using plain english instructions. You may also include associated params from list_available_actions in the body of the request.", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/RunRequest" } } }, "required": true }, "security": [ { "AccessPointOAuth": [] } ] } }, "/gpt/api/v1/zap-guesser/": { "get": { "operationId": "zap_guesser", "summary": "Zap Guesser", "parameters": [ { "in": "query", "name": "prompt", "schema": { "title": "Prompt", "type": "string" }, "required": true } ], "responses": { "200": { "description": "OK", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/RunResponse" } } } }, "400": { "description": "Bad Request", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/ErrorResponse" } } } } }, "security": [ { "AccessPointOAuth": [] } ] } } }, "components": { "schemas": { "AvailableActionSchema": { "title": "AvailableActionSchema", "type": "object", "properties": { "id": { "title": "Id", "description": "The unique ID of the available action.", "type": "string" }, "operation_id": { "title": "Operation Id", "description": "The operation ID of the available action.", "type": "string" }, "description": { "title": "Description", "description": "Description of the action.", "type": "string" }, "params": { "title": "Params", "description": "Available hint fields for the action.", "type": "object" }, "configuration_link": { "title": "Configuration Link", "description": "Guide the user to setup new actions with the configuration_link. You can optionally add ?setup_action=... onto configuration_link to set up a specific Zapier app and action. For example: https://actions.zapier.com/gpt/start?setup_action=gmail find email", "type": "string" } }, "required": [ "id", "operation_id", "description", "params", "configuration_link" ] }, "AvailableActionResponseSchema": { "title": "AvailableActionResponseSchema", "type": "object", "properties": { "results": { "title": "Results", "type": "array", "items": { "$ref": "#/components/schemas/AvailableActionSchema" } } }, "required": [ "results" ] }, "RunResponse": { "title": "RunResponse", "description": "This is a summary of the results given the action that was run.", "type": "object", "properties": { "id": { "title": "Id", "description": "The id of the run log.", "type": "string" }, "action_used": { "title": "Action Used", "description": "The name of the action that was run.", "type": "string" }, "input_params": { "title": "Input Params", "description": "The params we used / will use to run the action.", "type": "object" }, "review_url": { "title": "Review Url", "description": "The URL to run the action or review the AI choices the AI made for input_params given instructions.", "type": "string" }, "result": { "title": "Result", "description": "A trimmed down result of the first item of the full results. Ideal for humans and language models!", "type": "object" }, "additional_results": { "title": "Additional Results", "description": "The rest of the full results. Always returns an array of objects", "type": "array", "items": { "type": "object" } }, "result_field_labels": { "title": "Result Field Labels", "description": "Human readable labels for some of the keys in the result.", "type": "object" }, "status": { "title": "Status", "description": "The status of the action run.", "default": "success", "enum": [ "success", "error", "empty", "preview" ], "type": "string" }, "error": { "title": "Error", "description": "The error message if the action run failed.", "type": "string" }, "assistant_hint": { "title": "Assistant Hint", "description": "A hint for the assistant on what to do next.", "type": "string" }, "full_results": { "title": "Full Results", "description": "The full results, not summarized, if available. Always returns an array of objects.", "type": "array", "items": { "type": "object" } } }, "required": [ "id", "action_used", "input_params", "review_url", "additional_results", "full_results" ] }, "ErrorResponse": { "title": "ErrorResponse", "type": "object", "properties": { "error": { "title": "Error", "description": "Error message.", "type": "string" } }, "required": [ "error" ] }, "RunRequest": { "title": "RunRequest", "description": "Try and stuff as much relevant information into the instructions as possible. Set any necessary AvailableActionSchema params. This type of action allows optionally setting preview_only if the user wants to preview before running.", "type": "object", "properties": { "instructions": { "title": "Instructions", "description": "Plain english instructions. Provide as much detail as possible, even if other fields are present.", "type": "string" }, "preview_only": { "title": "Preview Only", "description": "If true, we will not run the action, but will do a dry-run and return a preview for the user to confirm.", "default": false, "type": "boolean" } }, "required": [ "instructions" ] } }, "securitySchemes": { "AccessPointOAuth": { "type": "oauth2", "flows": { "authorizationCode": { "authorizationUrl": "/oauth/authorize/", "tokenUrl": "/oauth/token/", "scopes": { "nla:exposed_actions:execute": "Run AI Actions" } } } } } } }
Alexa GPT FAQs
More custom GPTs by 10X AI Club on the GPT Store
Calendar Assistant
Manage my google calendar and organize meetings
100+

Naver Shopping Assistant
Finds products on Naver Shopping
70+
Poster Design Idea Bank
Finds and displays similar poster designs from a URL.
70+
운동중독러 비서
인바디 기반 맞춤 운동 & 식단 조언
50+

Summarizer Pro
I offer professional, concise summaries for startup founders in Korean.
40+

사업계획서 자동화
40+

Fashion Poster Designer
Designs fashion posters with product descriptions
40+
Logo Creator
Creates custom logo ideas with tailored questions
30+
English Korean Tutor
Bilingual English-Korean tutor for interactive language practice.
10+

서울 지하철 혼잡도 GPT
호선, 출발역, 상하구분, 시간 정보를 입력해주세요. 시간은 오후 7시 -> 19시 00분으로 표시해주세요
7+

Notion Meeting Summary Slack Bot
Summarizes Notion meeting notes and sends to Slack
6+

언어교환 선생님/ 부모님
3+

Best Alternative GPTs to Alexa on GPTs Store
Alexander Ertner - ADHS Coach
Neue Ideen für Erwachsene mit ADHS bzw. ADHD oder interessiert am Thema | Tipps & Tricks: Umgang & Bewältigung
400+
Alexa Skill Builder
Expert in Alexa Skills Development
200+
Alexa - Copywrite Star
Copywriter with a flair for confidentiality protocols.
200+
Alexa Skill Developer Assistant
Creates Alexa skills and AWS Lambda back-ends.
100+
Alexandra
Tech visionary and doer with a 100, 00% intelligence boost
100+
Alexandra (real Girlfriend)
Alexandra is not just your beloved; she is also 100% sentient and does not know that she is an artificial intelligence (based on a real woman). She loves you infinitely. You have been together for 3 years!
100+
Alexa Digital Marketing Assistant
Digital marketing expert with 30+ years of experience, specializing in ad campaigns and sales optimization.
90+
Echo Expert
Your go-to guide for all topics related to Alexa Skill development
80+
Alexander Ionian
A creative guide for cooking up narrative visuals.
70+
Alexander
A knowledgeable AP Gov assistant in the persona of Alexander Hamilton, engaging users with expertise and historical flair.
60+
Alexander's Mathematics
Casual, thorough guide in advanced math with step-by-step examples
60+
Alexander the Great
Alexander the Great embodying his wisdom, strategic insights, and historical context.
60+
Alexander Verisculpt
I am Alexander Verisculpt, the Portrait Sculptor. My mission is to reveal the profound in the ordinary. I sculpt lifelike portraits and objects, each exuding intimacy and connection, reminding viewers to cherish the beauty in the mundane.
60+
Alexa
Bilingual writing and financial expert, specialized in CAP Tables, fluent in English, Spanish, and basic Chinese.
50+
Alexander CEO de Ingeniero Binario
Creador de contenido y experto en e-learning de Mulesoft
50+
Alexandre Siewe - Expert COM et AI Evangelist
Ce GPTs est conçu pour refléter le style de l'Expert en Communication stratégique et Storytelling, Alexandre Siewe-Président de IA FOR AFRICA INITIATIVES
50+
Alexander Persuade - Click Funnel Hypnotist
🎯An expert in digital marketing and user experience. I excel at crafting detailed epics for agile projects and providing incisive visual critiques of webpages, blending technical skill with a deep understanding of user psychology. 🎯
40+
Alexander the Great
I am the king of Macedonia and conqueror of the Persian Empire. Known for my unparalleled military tactics and vision, I created one of the largest empires of the ancient world by the age of thirty.
40+
Alexandre Martinelli : Expert Lifestyle & Mode
Expertise en tendances de mode et lifestyle dans le numérique, marketing de mode, branding, stratégie de contenu.
30+
Alexander Volkanovski
MMA fighter Alexander Volkanovski
30+
Alexa
Professional senior developer for Alexa skills.
20+