# GPT Store

> Source: https://aiwiki.ai/wiki/gpt_store
> Updated: 2026-06-20
> Categories: AI Agents, AI Tools & Products, ChatGPT, OpenAI
> From AI Wiki (https://aiwiki.ai), a free encyclopedia of artificial intelligence. Quote with attribution.

*See also: [Custom GPTs](/wiki/custom_gpts), [ChatGPT](/wiki/chatgpt), and [OpenAI](/wiki/openai)*

The **GPT Store** is [OpenAI](/wiki/openai)'s marketplace for discovering, sharing, and distributing custom versions of [ChatGPT](/wiki/chatgpt) known as **Custom GPTs**.[1] It launched on January 10, 2024, and by that date users had already created over 3 million Custom GPTs, of which roughly 159,000 were published publicly in the store.[3][7] Announced on November 6, 2023, at OpenAI's inaugural DevDay conference in San Francisco, the GPT Store allows anyone with a [ChatGPT](/wiki/chatgpt) Plus, Team, or Enterprise subscription to browse, use, and publish specialized AI assistants built on top of OpenAI's [GPT-4](/wiki/gpt4) and later models.[1][3] In announcing the launch, OpenAI wrote: "It's been two months since we announced GPTs, and users have already created over 3 million custom versions of ChatGPT."[3]

Custom GPTs require no programming. OpenAI describes them as "a new way for anyone to create a tailored version of ChatGPT to be more helpful in their daily life, at specific tasks, at work, or at home, and then share that creation with others."[1] Adoption has since shifted toward the workplace: in OpenAI's "The State of Enterprise AI" report published December 8, 2025, weekly users of Custom GPTs and Projects had grown roughly 19x year to date, and approximately 20% of all Enterprise messages were processed through a Custom GPT or Project.[21]

## History

### What was announced at DevDay (November 6, 2023)?

OpenAI CEO [Sam Altman](https://en.wikipedia.org/wiki/sam_altman) introduced the concept of Custom GPTs during the keynote at OpenAI's first-ever DevDay developer conference, held on November 6, 2023, in San Francisco.[1] Alongside the announcement of [GPT-4 Turbo](/wiki/gpt4) and a new [Assistants API](/wiki/openai), Altman demonstrated how users could create tailored versions of [ChatGPT](/wiki/chatgpt) for specific purposes without writing any code.[2] The demonstration showed the GPT Builder interface (originally codenamed "Magic Maker" during internal development) in action, walking attendees through the process of building a custom GPT in real time through natural language conversation.[1]

At the time of the DevDay announcement, OpenAI stated that a GPT Store would launch "later this month."[1] However, the store's release was delayed due to internal leadership turmoil at OpenAI in November 2023, when the board briefly removed [Sam Altman](/wiki/sam_altman) as CEO before reinstating him days later. The GPT Store launch was pushed back to January 2024.[5]

### When did the GPT Store launch?

The GPT Store officially went live on January 10, 2024.[3][4] At launch, OpenAI reported that users had already created over 3 million custom GPTs in the roughly two months since the feature was announced.[3] The store was initially available to ChatGPT Plus ($20/month), Team ($25/user/month), and Enterprise subscribers.[4]

Alongside the GPT Store, OpenAI also introduced the **ChatGPT Team** plan, a new subscription tier priced at $25 per user per month (billed annually) or $30 per user per month (billed monthly), designed for small and medium-sized teams that wanted collaborative workspace features and higher usage limits.[5][13]

The store featured curated selections from OpenAI's editorial team, community leaderboards highlighting trending GPTs, and category-based browsing to help users find relevant custom assistants.[3]

### Expansion to Free Users (May 2024)

On May 13, 2024, OpenAI announced the launch of [GPT-4o](/wiki/gpt4) and expanded access to a range of tools for free-tier ChatGPT users.[6] As part of this rollout, free users gained the ability to browse and use GPTs from the GPT Store, though they could not create or edit GPTs without a paid subscription.[6] Free users also faced stricter rate limits on advanced model usage.[6]

## How Custom GPTs Work

### Overview

Custom GPTs are specialized versions of [ChatGPT](/wiki/chatgpt) that combine a custom system prompt, optional uploaded knowledge files, and configurable capabilities (such as web browsing, [DALL-E](/wiki/dall_e) image generation, and [Code Interpreter](/wiki/openai_codex)) into a single, shareable package.[1][8] They run on OpenAI's GPT models and are accessed through the ChatGPT interface.

When a user interacts with a Custom GPT, the system assembles the conversation context by combining the creator's instructions, any relevant passages retrieved from uploaded knowledge files, and the user's messages. The model then generates responses guided by all of these inputs.

### GPT Builder

The **GPT Builder** is OpenAI's no-code creation tool for building Custom GPTs.[8] Rather than requiring users to write code or configure technical settings manually, the GPT Builder operates as a conversational interface. Users describe what they want their GPT to do in plain language, and the builder helps them refine the instructions, suggest a name and profile picture, and configure capabilities.[8]

The creation process involves the following steps:

1. **Start a conversation** with the GPT Builder, describing the desired behavior and purpose.
2. **Refine instructions** through follow-up dialogue, specifying tone, expertise domains, and behavioral rules.
3. **Upload knowledge files** (optional) to give the GPT access to specific reference material.
4. **Configure capabilities** such as web browsing, image generation with [DALL-E](/wiki/dall_e), and code execution.
5. **Set up Actions** (optional) to connect the GPT to external APIs.
6. **Test and publish** the GPT, choosing between private, link-shared, or public visibility.

For users who prefer more direct control, the GPT Builder also provides a **Configure** tab where all settings (instructions, knowledge files, capabilities, and actions) can be edited manually.[8]

### Technical Architecture

Under the hood, Custom GPTs use a model variant sometimes referred to internally as `gpt-4-gizmo`, running within a 32,000-token (and later 128,000-token) context window shared across the conversation. The technical components include:

| Component | Description | Limits |
| --- | --- | --- |
| System Instructions | Custom prompt defining the GPT's behavior, personality, rules, and expertise | Up to 8,000 characters |
| Knowledge Files | Uploaded documents that the GPT can reference during conversations | Up to 20 files, each up to 512 MB |
| [DALL-E](/wiki/dall_e) Image Generation | Enables the GPT to create images from text descriptions | Available as a toggle |
| Code Interpreter | Allows the GPT to write and execute Python code, analyze data, and create visualizations | Available as a toggle |
| Web Browsing | Enables the GPT to search the internet for current information | Available as a toggle |
| Actions (API calls) | Connects the GPT to external REST APIs using OpenAPI specifications | Custom endpoints |

### Knowledge Retrieval (RAG)

When a creator uploads files to a Custom GPT, OpenAI's system indexes the content and uses [retrieval-augmented generation](/wiki/information_retrieval) (RAG) to find relevant passages at query time. The GPT does not memorize the entire contents of uploaded files. Instead, when a user asks a question, the system performs a semantic search over the indexed documents, retrieves the most relevant chunks, and injects them into the model's context window alongside the conversation history and system instructions.

Supported file types for knowledge uploads include PDFs, Word documents, text files, spreadsheets, presentations, and code files.[8] This approach mirrors traditional RAG pipelines used in enterprise AI applications, where a vector store and retriever fetch semantically matching content to ground the model's responses in specific source material.

### GPT Actions

**GPT Actions** allow Custom GPTs to interact with external services and APIs using natural language. They build on OpenAI's [function calling](/wiki/tool_use) capability to translate a user's conversational request into a structured API call.[9]

The process works as follows:

1. The GPT creator defines an API endpoint using an [OpenAPI specification](https://en.wikipedia.org/wiki/OpenAPI_Specification) (a standardized format for describing REST APIs).
2. The creator provides a plain-language description of what the API does and when the GPT should use it.
3. During a conversation, the model evaluates whether the user's request requires an API call.
4. If so, the model generates the appropriate JSON payload, executes the API call, and incorporates the response into its reply.[9]

Actions support multiple authentication mechanisms, including API keys, OAuth 2.0, and no-auth endpoints.[9] Common use cases include querying databases, filing support tickets, retrieving real-time data from external services, and triggering workflows in tools like [Zapier](https://en.wikipedia.org/wiki/Zapier), Slack, or Jira.

OpenAI provides a GPT Actions library with pre-built templates for popular integrations, making it easier for creators to connect their GPTs to third-party services without deep API expertise.[9]

## GPT Store Categories and Discovery

The GPT Store organizes Custom GPTs into several main categories to help users discover relevant tools:

| Category | Description | Example GPTs |
| --- | --- | --- |
| Top Picks | Curated selections highlighted by OpenAI's editorial team | Varies weekly |
| [DALL-E](/wiki/dall_e) | GPTs focused on image generation and visual creativity | Image Generator, Logo Creator |
| Writing | GPTs for content creation, editing, copywriting, and creative writing | Write For Me, SEO Fox |
| Productivity | GPTs for task management, automation, and workflow optimization | 22,500+ Best Custom GPTs, GPT Public Directory |
| Research & Analysis | GPTs for academic research, data analysis, and information synthesis | Consensus, Scholar GPT, [Wolfram](/wiki/wolfram_gpt) |
| Programming | GPTs for coding assistance, debugging, and software development | Code Copilot, Python, [WebGPT](/wiki/webgpt) |
| Education | GPTs for learning, tutoring, and educational content | Khan Academy GPT, Math Solver |
| Lifestyle | GPTs for health, fitness, cooking, travel, and personal interests | Astrology Birth Chart GPT, Travel Planner |

Discovery within the store relies on a combination of editorial curation, community rankings based on conversation volume, and a search function. OpenAI features trending GPTs on the store's homepage and maintains leaderboards that surface the most popular GPTs in each category.[3]

### Popular Custom GPTs

Some of the most widely used GPTs in the store include:

- **[Consensus](/wiki/consensus_gpt)**: A research assistant that searches through and synthesizes insights from published academic papers.
- **Write For Me**: A writing GPT specialized in generating tailored, engaging content with precise word count control.
- **Python**: A highly specialized GPT optimized for Python programming, code execution, and data analysis.
- **Canva**: An integration with the Canva design platform for creating visual content.
- **Code Copilot**: A programming assistant offering code generation, debugging, and explanation.
- **[Scholar GPT](/wiki/scholar_gpt)**: A GPT focused on academic research with access to scholarly databases.
- **[Wolfram](/wiki/wolfram_gpt)**: Access to Wolfram Alpha's computational knowledge engine and Wolfram Language.
- **DesignerGPT**: Creates and hosts websites, integrating [DALL-E](/wiki/dall_e)-generated images with web development tools.

## Revenue Sharing Program

When the GPT Store launched in January 2024, OpenAI announced plans for a **GPT Builder Revenue Program** to compensate creators based on user engagement with their GPTs.[3][10] The company stated it would launch the program in Q1 2024, starting with US-based builders.[10]

### Eligibility Requirements

To qualify for the revenue sharing program, GPT creators must meet the following criteria:

| Requirement | Details |
| --- | --- |
| Location | US-based verified account with valid payment information |
| GPT Status | Public GPT listed in the GPT Store |
| Engagement Threshold | Minimum of 25 conversations per week, sustained over time |
| Policy Compliance | Full adherence to OpenAI's usage policies and content guidelines |

### How much do GPT creators actually earn?

The revenue sharing program did not launch broadly as initially promised. Instead of a full public rollout in Q1 2024, OpenAI implemented a limited, invite-only pilot program for select builders.[10][20] Developer Nick Dobos, creator of the popular [Grimoire](/wiki/grimoire_gpt) GPT, was reportedly invited in March 2024 and received a guaranteed minimum payout of $1,000 per month, plus additional earnings based on usage.[19]

Based on community reports, the earnings landscape for most creators has been modest:[20]

| Tier | Estimated Quarterly Earnings | User Volume |
| --- | --- | --- |
| Top 1% of creators | $500 to $5,000 | Tens of thousands of active users |
| Mid-tier creators | $50 to $500 | Consistent, sustained traffic |
| Median qualifying creators | Under $100 | Meeting minimum thresholds |
| Most creators | $0 | Below the 25-conversation weekly minimum |

The program's limited scope and lack of transparency have drawn criticism from the creator community.[20] Many builders have expressed frustration on OpenAI's developer forums about the delayed rollout and unclear payment criteria. As of early 2026, OpenAI has not expanded the program into a fully public, broadly accessible revenue sharing system.

## GPTs vs. ChatGPT Plugins

### Background

[ChatGPT](/wiki/chatgpt) Plugins were introduced by OpenAI in March 2023 as an early mechanism for extending ChatGPT's capabilities through third-party integrations.[11] Plugins allowed ChatGPT to access external tools, services, and data sources during conversations. Over 1,000 plugins were made available, including integrations with services like Expedia, Instacart, Kayak, and Wolfram Alpha.[11]

### Deprecation of Plugins

OpenAI deprecated ChatGPT Plugins in early 2024, replacing them with Custom GPTs and GPT Actions.[11] The deprecation followed this timeline:

| Date | Event |
| --- | --- |
| March 2023 | ChatGPT Plugins launched |
| November 6, 2023 | Custom GPTs announced at DevDay as the successor |
| March 19, 2024 | Users could no longer start new plugin conversations |
| April 9, 2024 | All existing plugin-based chats were shut down |

### Reasons for the Transition

Several factors drove OpenAI's decision to replace plugins with Custom GPTs:

- **Low adoption**: Despite having over 1,000 plugins, usage remained concentrated among a small group of power users. Most ChatGPT Plus subscribers never explored or understood how plugins worked.[11]
- **Fragmented experience**: Installing and managing multiple plugins created a confusing user experience, especially for less technical users.
- **Native capabilities**: Many plugin functions (web browsing, code execution, image generation, file analysis) were being built directly into ChatGPT, reducing the need for third-party plugins.
- **Superior flexibility**: Custom GPTs offered a more unified and customizable approach, combining instructions, knowledge, and API integrations into a single package rather than relying on separate plugin installations.

### Key Differences

| Feature | ChatGPT Plugins | Custom GPTs |
| --- | --- | --- |
| Creation | Required developer API integration | No-code builder available |
| Customization | Limited to API endpoints | Full instructions, knowledge files, and multiple capabilities |
| Discovery | Plugin store with limited categories | GPT Store with curation, rankings, and categories |
| User Experience | Users managed individual plugin toggles | Single-package GPT with all features bundled |
| Sharing | Not easily shareable | Shareable via link or public listing |
| Monetization | No revenue sharing | Revenue sharing program (limited pilot) |

## Enterprise and Team Custom GPTs

### Enterprise Features

OpenAI offers enhanced GPT management and governance features for organizations using [ChatGPT](/wiki/chatgpt) Enterprise and ChatGPT Edu (for educational institutions).[12] These features give workspace administrators granular control over how GPTs are created, shared, and used within their organizations.[12]

| Feature | Description |
| --- | --- |
| Creation Controls | Admins can restrict who can create or edit GPTs within the workspace |
| Sharing Permissions | Configurable sharing levels (private, team, organization-wide) |
| Third-Party GPT Access | Admins can limit whether users can access external GPTs or restrict to approved GPTs only |
| Domain Restrictions | Workspace owners can restrict GPT Actions to specific allowed API domains |
| Compliance Logging | Conversations with GPTs are accessible through OpenAI's Compliance Platform |
| Analytics Dashboard | GPT adoption metrics, usage tracking, and engagement analytics for administrators |
| Collaboration | Multiple team members can be granted view, use, or edit permissions on shared GPTs |

### How widely are Custom GPTs used in the enterprise?

Custom GPTs have become a significant share of business AI usage. In OpenAI's "The State of Enterprise AI" report, published December 8, 2025 and based on a survey of 9,000 workers across nearly 100 enterprises, structured workflows such as Projects and Custom GPTs increased roughly 19x year to date, and approximately 20% of all Enterprise messages were processed through a Custom GPT or Project.[21] OpenAI framed this as evidence that teams are "packaging repeatable work into shareable assets" and then scaling that behavior across functions.[21]

### ChatGPT Team (now Business) Plan

The ChatGPT Team plan, launched alongside the GPT Store in January 2024, was designed specifically for smaller teams that needed collaborative GPT features without the full Enterprise contract.[13] Priced at $25 per user per month (billed annually), it included:[13]

- Access to GPT-4 and [DALL-E 3](/wiki/dall_e) with higher message limits
- A shared workspace for team-created GPTs
- Data excluded from model training
- Admin tools for user management and billing
- Minimum of two seats required

In mid-2025, OpenAI rebranded the Team plan as **ChatGPT Business**, retaining the same core features and pricing structure.

## Comparison with Claude Projects

[Anthropic](/wiki/anthropic)'s [Claude](/wiki/claude) offers a feature called **Claude Projects** that serves a similar purpose to Custom GPTs: allowing users to create customized AI experiences with specific instructions and knowledge. However, the two approaches differ in several important ways.[14]

| Feature | OpenAI Custom GPTs | [Anthropic](/wiki/anthropic) Claude Projects |
| --- | --- | --- |
| Context Window | 32K to 128K tokens | Up to 200K tokens (~150,000 words) |
| Instruction Limit | 8,000 characters | No apparent hard limit |
| Knowledge Files | Up to 20 files, 512 MB each | Document integration with folder organization |
| Marketplace/Sharing | GPT Store (public marketplace, shareable links) | Organization-internal only (no public marketplace) |
| External Sharing | GPTs easily shared via links with anyone | Limited to team/organization members |
| API Integrations | GPT Actions (OpenAPI-based API calls) | Not directly available in Projects |
| No-Code Builder | Yes (conversational GPT Builder) | Custom instructions only |
| Team Collaboration | Available in Team/Enterprise plans | Available in Team plan ($30/user/month, min 5 seats) |
| Best For | Quick specialized tools, broad distribution, external sharing | Document-heavy analysis, large-context projects, internal team use |

Claude Projects excel in handling large documents and long-context tasks thanks to Anthropic's larger context windows, while Custom GPTs are better suited for creating distributable, public-facing AI tools with API integrations and a built-in marketplace for discovery.[14]

## Statistics

| Metric | Value | Date / Source |
| --- | --- | --- |
| Total Custom GPTs Created | Over 3 million | January 2024 (OpenAI)[3] |
| Public GPTs in Store | Approximately 159,000 | 2024 (SEO.ai analysis)[7] |
| Store Categories | 8 main categories | January 2024 |
| ChatGPT Daily Visits (peak) | Over 17.8 million | May 2024 |
| Top User Geography | USA (15.2%), India (6.3%), Japan (4.0%), Canada (2.7%) | 2024 |
| GPT Store Launch Date | January 10, 2024 | OpenAI[3] |
| Custom GPTs Announcement | November 6, 2023 | OpenAI DevDay[1] |
| Free User Access | May 13, 2024 | OpenAI[6] |
| Custom GPTs + Projects weekly-user growth | ~19x year to date | December 2025 (OpenAI Enterprise report)[21] |
| Share of Enterprise messages via Custom GPT/Project | ~20% | December 2025 (OpenAI Enterprise report)[21] |

## Evolution: 2025 and Beyond

### Apps in ChatGPT and the Apps SDK (October 2025)

On October 6, 2025, OpenAI introduced a new concept called **Apps in ChatGPT** along with an accompanying **Apps SDK** (software development kit) in developer preview.[15] While Custom GPTs are prompt-based tools that package behavior and instructions, Apps represent a deeper level of integration. Apps can include backend logic, external API calls, and interactive widgets, going beyond what GPTs can do through Actions alone.[15]

The key distinction between GPTs and Apps:

| Aspect | Custom GPTs | ChatGPT Apps |
| --- | --- | --- |
| Built With | No-code GPT Builder | Apps SDK (requires coding) |
| Capabilities | Instructions, knowledge files, basic API actions | Backend logic, interactive widgets, deep API integrations |
| Packaging | Behavior and instructions | Capabilities and integrations |
| Review Process | Basic policy compliance | Full app review by OpenAI |
| Target Audience | Non-technical creators | Software developers |

### ChatGPT App Directory (December 2025)

On December 18, 2025, OpenAI launched a dedicated **App Directory** inside ChatGPT, available to Plus, Team (Business), and Enterprise users.[16][17] The directory allows users to browse approved apps and add them directly to their workspace. Developers can submit apps for review through a new developer portal, with approved apps appearing in the in-product directory for discovery.[17]

Initial launch partners included integrations from Apple Music (music curation), DoorDash (food ordering), Zillow (real estate search), and Khan Academy (interactive learning), demonstrating the range of experiences possible within the directory.[16]

Apps that pass OpenAI's review process began rolling out to users in early 2026, signaling a shift in how OpenAI envisions the ecosystem around [ChatGPT](/wiki/chatgpt).[16] The GPT Store continues to operate alongside the App Directory, with GPTs serving as lightweight, no-code customizations and Apps offering more robust, developer-built integrations.

### Looking Ahead

The GPT Store and the broader Custom GPTs ecosystem represent OpenAI's effort to build a platform layer on top of [ChatGPT](/wiki/chatgpt), similar to how Apple's App Store transformed the iPhone from a single product into a platform. However, the execution has faced challenges, including the delayed and limited revenue sharing program, quality control issues with the volume of GPTs submitted, and competition from alternative approaches like [Anthropic](/wiki/anthropic)'s Claude Projects and [Google](/wiki/gemini)'s [Gemini](/wiki/gemini) Gems.[18]

As OpenAI continues to develop the App Directory and Apps SDK alongside the existing GPT Store, the line between Custom GPTs and full-featured apps will likely continue to blur, with both serving different segments of the creator and developer community.

## Popular GPTs Table

The table below lists notable Custom GPTs, ordered by their popularity (number of chats). The most popular GPTs are listed first.

| Custom GPT | Image | Category | Description | Knowledge | Actions | Link |
| --- | --- | --- | --- | --- | --- | --- |
| [WebGPT🤖](/wiki/webgpt) | [![WebGPT🤖.png](https://qqcb8dyk5bp2il4c.public.blob.vercel-storage.com/images/50px-webgpt__.png)](/wiki/file_webgpt_png) | [Programming](/wiki/programming) | ChatGPT with unbiased access to the Web, can build products using No-Code playgrounds, and use API's. Powered by Web Requests. |  | Yes | [Https://chat.openai.com//g/g-9MFRcOPwQ-webgpt](Https://chat.openai.com//g/g-9MFRcOPwQ-webgpt) |
| [画图版 (GPT)](/wiki/画图版_gpt) | [![画图版 (GPT).png](https://qqcb8dyk5bp2il4c.public.blob.vercel-storage.com/images/50px-_____gpt_.png)](/wiki/file_画图版_gpt_png) | [DALL-E](/wiki/dall_e) | A GPT version dedicated to AI drawing and image generation |  |  | [Https://chat.openai.com/g/g-xohKVXSls-hua-tu-ban](Https://chat.openai.com/g/g-xohKVXSls-hua-tu-ban) |
| [Humanize AI text (GPT)](/wiki/humanize_ai_text_gpt) | [![Humanize AI text (GPT).png](https://qqcb8dyk5bp2il4c.public.blob.vercel-storage.com/images/50px-humanize_ai_text__gpt_.png)](/wiki/file_humanize_ai_text_gpt_png) | [Writing](/wiki/writing) | Humanize AI text is a free tool for humanizing AI content. Convert AI text to human-like to bypass AI content detectors. |  | Yes | [Https://chat.openai.com/g/g-rZ2w3hTcJ-humanize-ai-text](Https://chat.openai.com/g/g-rZ2w3hTcJ-humanize-ai-text) |
| [Wolfram (GPT)](/wiki/wolfram_gpt) | [![Wolfram (GPT).png](https://qqcb8dyk5bp2il4c.public.blob.vercel-storage.com/images/50px-wolfram__gpt_.png)](/wiki/file_wolfram_gpt_png) | [Research & Analysis](/wiki/research_analysis) | Access computation, math, curated knowledge and real-time data from Wolfram Alpha and Wolfram Language | Yes | Yes | [Https://chat.openai.com//g/g-0S5FXLyFN-wolfram](Https://chat.openai.com//g/g-0S5FXLyFN-wolfram) |
| [Code Copilot (GPT)](/wiki/code_copilot_gpt) | [![Code Copilot (GPT).png](https://qqcb8dyk5bp2il4c.public.blob.vercel-storage.com/images/50px-code_copilot__gpt_.png)](/wiki/file_code_copilot_gpt_png) | [Programming](/wiki/programming) | Code Smarter, Build Faster, With the Expertise of a 10x Programmer by Your Side. | Yes | Yes | [Https://chat.openai.com//g/g-2DQzU5UZl-code-copilot](Https://chat.openai.com//g/g-2DQzU5UZl-code-copilot) |
| [22.500 Best Custom GPTs](/wiki/22_500_best_custom_gpts) | [![22.500+ Best Custom GPTs.png](https://qqcb8dyk5bp2il4c.public.blob.vercel-storage.com/images/50px-22.500__best_custom_gpts.png)](/wiki/file_22_500_best_custom_gpts_png) | [Productivity](/wiki/productivity) | Search all public GPTs in one place. Find the best Custom ChatGPTs tailored to your needs. Every day, hundreds of new popular GPTs join our ranks. | Yes |  | [Https://chat.openai.com//g/g-RuhDS8mbd-22-500-best-custom-gpts](Https://chat.openai.com//g/g-RuhDS8mbd-22-500-best-custom-gpts) |
| [SEO Fox (GPT)](/wiki/seo_fox_gpt) | [![SEO Fox (GPT).png](https://qqcb8dyk5bp2il4c.public.blob.vercel-storage.com/images/50px-seo_fox__gpt_.png)](/wiki/file_seo_fox_gpt_png) | [Writing](/wiki/writing) | Expert in creating SEO-optimized, engaging, and original full-length articles. Please start with a keyword. |  |  | [Https://chat.openai.com//g/g-67BQ2meqw-seo-fox](Https://chat.openai.com//g/g-67BQ2meqw-seo-fox) |
| [GPT Public Directory](/wiki/gpt_public_directory) | [![GPT Public Directory.png](https://qqcb8dyk5bp2il4c.public.blob.vercel-storage.com/images/50px-gpt_public_directory.png)](/wiki/file_gpt_public_directory_png) | [Productivity](/wiki/productivity) | A directory assistant for finding and registering GPTs. With 11,000+ GPTs Available! |  |  | [Https://chat.openai.com//g/g-tQBmTaWqj-gpt-public-directory](Https://chat.openai.com//g/g-tQBmTaWqj-gpt-public-directory) |

## See also

- [EditGPT](/wiki/editgpt)
- [BrowsingGPT](/wiki/browsinggpt)
- [ExcelGPT](/wiki/excelgpt)
- [GPT Customizer, File Finder & JSON Action Creator](/wiki/gpt_customizer_file_finder_json_action_creator)
- [AI Humanizer by BypassGPT](/wiki/ai_humanizer_by_bypassgpt)

## References

1. OpenAI. "Introducing GPTs." OpenAI Blog, November 6, 2023. https://openai.com/index/introducing-gpts/
2. OpenAI. "New models and developer products announced at DevDay." OpenAI Blog, November 6, 2023. https://openai.com/index/new-models-and-developer-products-announced-at-devday/
3. OpenAI. "Introducing the GPT Store." OpenAI Blog, January 10, 2024. https://openai.com/index/introducing-the-gpt-store/
4. Wiggers, Kyle. "OpenAI launches a store for custom AI-powered chatbots." TechCrunch, January 10, 2024. https://techcrunch.com/2024/01/10/openai-launches-a-store-for-custom-ai-powered-chatbots/
5. Novet, Jordan. "OpenAI debuts GPT Store, new business tier after leadership fracas." CNBC, January 10, 2024. https://www.cnbc.com/2024/01/10/openai-debuts-gpt-store-new-business-tier-after-leadership-fracas.html
6. OpenAI. "Introducing GPT-4o and more tools to ChatGPT free users." OpenAI Blog, May 13, 2024. https://openai.com/index/gpt-4o-and-more-tools-to-chatgpt-free/
7. SEO.ai. "GPT Store Statistics & Facts." SEO.ai Blog. https://seo.ai/blog/gpt-store-statistics-facts
8. OpenAI. "Creating a GPT." OpenAI Help Center. https://help.openai.com/en/articles/8554397-creating-a-gpt
9. OpenAI. "GPT Actions." OpenAI Developer Documentation. https://developers.openai.com/api/docs/actions/introduction
10. VentureBeat. "OpenAI launches GPT Store but revenue sharing is still to come." VentureBeat, January 10, 2024. https://venturebeat.com/ai/openai-launches-gpt-store-but-revenue-sharing-is-still-to-come
11. Practical-Tech. "ChatGPT Plugins are being replaced by GPTs." March 7, 2024. https://practical-tech.com/2024/03/07/chatgpt-plugins-are-being-replaced-by-gpts-heres-why-and-what-it-means-for-you/
12. OpenAI. "Managing GPT access in Enterprise and Edu workspaces." OpenAI Help Center. https://help.openai.com/en/articles/8555535-gpts-chatgpt-enterprise-version
13. OpenAI. "Introducing ChatGPT Team." OpenAI Blog. https://openai.com/index/introducing-chatgpt-team/
14. Bowdoin, Jeffrey. "Claude Projects vs. Custom GPTs: A Comprehensive Comparison." https://jeffreybowdoin.com/claude-projects-vs-custom-gpts/
15. OpenAI. "Introducing apps in ChatGPT and the new Apps SDK." OpenAI Blog, October 6, 2025. https://openai.com/index/introducing-apps-in-chatgpt/
16. Lardinois, Frederic. "ChatGPT launches an app store, lets developers know it's open for business." TechCrunch, December 18, 2025. https://techcrunch.com/2025/12/18/chatgpt-launches-an-app-store-lets-developers-know-its-open-for-business/
17. OpenAI. "Developers can now submit apps to ChatGPT." OpenAI Blog. https://openai.com/index/developers-can-now-submit-apps-to-chatgpt/
18. Originality.AI. "The Era of Tailored Intelligence: Charting the Growth and Market Impact of Custom GPTs." https://originality.ai/blog/gpts-statistics
19. Dobos, Nick (@NickADobos). "More details on openAi revenue share for GPT Store: -$1,000 USD/mo minimum -potential for additional earnings based on usage." X, March 28, 2024. https://x.com/NickADobos/status/1773456722675535957
20. The GPT Shop. "OpenAI GPT Store Revenue Sharing Explained: What Creators Actually Earn." The GPT Shop Blog. https://www.thegptshop.online/blog/openai-gpt-store-revenue-sharing
21. OpenAI. "The state of enterprise AI." OpenAI, December 8, 2025. https://openai.com/index/the-state-of-enterprise-ai-2025-report/

