GPT Store

RawGraph

Last edited

Fact-checked

In review queue

Sources

21 citations

Revision

v10 · 4,210 words

Fact-checks are independent of edits: a reviewer re-verifies the article against its sources and stamps the date. How we verify

See also: Custom GPTs, ChatGPT, and OpenAI

The GPT Store is OpenAI's marketplace for discovering, sharing, and distributing custom versions of 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 Plus, Team, or Enterprise subscription to browse, use, and publish specialized AI assistants built on top of OpenAI's GPT-4 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 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 and a new Assistants API, Altman demonstrated how users could create tailored versions of 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 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 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 that combine a custom system prompt, optional uploaded knowledge files, and configurable capabilities (such as web browsing, DALL-E image generation, and Code Interpreter) 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, 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:

ComponentDescriptionLimits
System InstructionsCustom prompt defining the GPT's behavior, personality, rules, and expertiseUp to 8,000 characters
Knowledge FilesUploaded documents that the GPT can reference during conversationsUp to 20 files, each up to 512 MB
DALL-E Image GenerationEnables the GPT to create images from text descriptionsAvailable as a toggle
Code InterpreterAllows the GPT to write and execute Python code, analyze data, and create visualizationsAvailable as a toggle
Web BrowsingEnables the GPT to search the internet for current informationAvailable as a toggle
Actions (API calls)Connects the GPT to external REST APIs using OpenAPI specificationsCustom endpoints

Knowledge Retrieval (RAG)

When a creator uploads files to a Custom GPT, OpenAI's system indexes the content and uses retrieval-augmented generation (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 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 (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, 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:

CategoryDescriptionExample GPTs
Top PicksCurated selections highlighted by OpenAI's editorial teamVaries weekly
DALL-EGPTs focused on image generation and visual creativityImage Generator, Logo Creator
WritingGPTs for content creation, editing, copywriting, and creative writingWrite For Me, SEO Fox
ProductivityGPTs for task management, automation, and workflow optimization22,500+ Best Custom GPTs, GPT Public Directory
Research & AnalysisGPTs for academic research, data analysis, and information synthesisConsensus, Scholar GPT, Wolfram
ProgrammingGPTs for coding assistance, debugging, and software developmentCode Copilot, Python, WebGPT
EducationGPTs for learning, tutoring, and educational contentKhan Academy GPT, Math Solver
LifestyleGPTs for health, fitness, cooking, travel, and personal interestsAstrology 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]

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

  • Consensus: 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: A GPT focused on academic research with access to scholarly databases.
  • Wolfram: Access to Wolfram Alpha's computational knowledge engine and Wolfram Language.
  • DesignerGPT: Creates and hosts websites, integrating 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:

RequirementDetails
LocationUS-based verified account with valid payment information
GPT StatusPublic GPT listed in the GPT Store
Engagement ThresholdMinimum of 25 conversations per week, sustained over time
Policy ComplianceFull 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 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]

TierEstimated Quarterly EarningsUser Volume
Top 1% of creators$500 to $5,000Tens of thousands of active users
Mid-tier creators$50 to $500Consistent, sustained traffic
Median qualifying creatorsUnder $100Meeting minimum thresholds
Most creators$0Below 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 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:

DateEvent
March 2023ChatGPT Plugins launched
November 6, 2023Custom GPTs announced at DevDay as the successor
March 19, 2024Users could no longer start new plugin conversations
April 9, 2024All 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

FeatureChatGPT PluginsCustom GPTs
CreationRequired developer API integrationNo-code builder available
CustomizationLimited to API endpointsFull instructions, knowledge files, and multiple capabilities
DiscoveryPlugin store with limited categoriesGPT Store with curation, rankings, and categories
User ExperienceUsers managed individual plugin togglesSingle-package GPT with all features bundled
SharingNot easily shareableShareable via link or public listing
MonetizationNo revenue sharingRevenue sharing program (limited pilot)

Enterprise and Team Custom GPTs

Enterprise Features

OpenAI offers enhanced GPT management and governance features for organizations using 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]

FeatureDescription
Creation ControlsAdmins can restrict who can create or edit GPTs within the workspace
Sharing PermissionsConfigurable sharing levels (private, team, organization-wide)
Third-Party GPT AccessAdmins can limit whether users can access external GPTs or restrict to approved GPTs only
Domain RestrictionsWorkspace owners can restrict GPT Actions to specific allowed API domains
Compliance LoggingConversations with GPTs are accessible through OpenAI's Compliance Platform
Analytics DashboardGPT adoption metrics, usage tracking, and engagement analytics for administrators
CollaborationMultiple 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 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's 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]

FeatureOpenAI Custom GPTsAnthropic Claude Projects
Context Window32K to 128K tokensUp to 200K tokens (~150,000 words)
Instruction Limit8,000 charactersNo apparent hard limit
Knowledge FilesUp to 20 files, 512 MB eachDocument integration with folder organization
Marketplace/SharingGPT Store (public marketplace, shareable links)Organization-internal only (no public marketplace)
External SharingGPTs easily shared via links with anyoneLimited to team/organization members
API IntegrationsGPT Actions (OpenAPI-based API calls)Not directly available in Projects
No-Code BuilderYes (conversational GPT Builder)Custom instructions only
Team CollaborationAvailable in Team/Enterprise plansAvailable in Team plan ($30/user/month, min 5 seats)
Best ForQuick specialized tools, broad distribution, external sharingDocument-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

MetricValueDate / Source
Total Custom GPTs CreatedOver 3 millionJanuary 2024 (OpenAI)[3]
Public GPTs in StoreApproximately 159,0002024 (SEO.ai analysis)[7]
Store Categories8 main categoriesJanuary 2024
ChatGPT Daily Visits (peak)Over 17.8 millionMay 2024
Top User GeographyUSA (15.2%), India (6.3%), Japan (4.0%), Canada (2.7%)2024
GPT Store Launch DateJanuary 10, 2024OpenAI[3]
Custom GPTs AnnouncementNovember 6, 2023OpenAI DevDay[1]
Free User AccessMay 13, 2024OpenAI[6]
Custom GPTs + Projects weekly-user growth~19x year to dateDecember 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:

AspectCustom GPTsChatGPT Apps
Built WithNo-code GPT BuilderApps SDK (requires coding)
CapabilitiesInstructions, knowledge files, basic API actionsBackend logic, interactive widgets, deep API integrations
PackagingBehavior and instructionsCapabilities and integrations
Review ProcessBasic policy complianceFull app review by OpenAI
Target AudienceNon-technical creatorsSoftware 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.[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, 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's Claude Projects and Google's 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.

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

Custom GPTImageCategoryDescriptionKnowledgeActionsLink
WebGPT🤖WebGPT🤖.pngProgrammingChatGPT with unbiased access to the Web, can build products using No-Code playgrounds, and use API's. Powered by Web Requests.YesHttps://chat.openai.com//g/g-9MFRcOPwQ-webgpt
画图版 (GPT)画图版 (GPT).pngDALL-EA GPT version dedicated to AI drawing and image generationHttps://chat.openai.com/g/g-xohKVXSls-hua-tu-ban
Humanize AI text (GPT)Humanize AI text (GPT).pngWritingHumanize AI text is a free tool for humanizing AI content. Convert AI text to human-like to bypass AI content detectors.YesHttps://chat.openai.com/g/g-rZ2w3hTcJ-humanize-ai-text
Wolfram (GPT)Wolfram (GPT).pngResearch & AnalysisAccess computation, math, curated knowledge and real-time data from Wolfram Alpha and Wolfram LanguageYesYesHttps://chat.openai.com//g/g-0S5FXLyFN-wolfram
Code Copilot (GPT)Code Copilot (GPT).pngProgrammingCode Smarter, Build Faster, With the Expertise of a 10x Programmer by Your Side.YesYesHttps://chat.openai.com//g/g-2DQzU5UZl-code-copilot
22.500 Best Custom GPTs22.500+ Best Custom GPTs.pngProductivitySearch 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.YesHttps://chat.openai.com//g/g-RuhDS8mbd-22-500-best-custom-gpts
SEO Fox (GPT)SEO Fox (GPT).pngWritingExpert in creating SEO-optimized, engaging, and original full-length articles. Please start with a keyword.Https://chat.openai.com//g/g-67BQ2meqw-seo-fox
GPT Public DirectoryGPT Public Directory.pngProductivityA directory assistant for finding and registering GPTs. With 11,000+ GPTs Available!Https://chat.openai.com//g/g-tQBmTaWqj-gpt-public-directory

See also

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/

Improve this article

Add missing citations, update stale details, or suggest a clearer explanation. Every suggestion is reviewed for sourcing before it goes live.

9 revisions by 1 contributors · full history

Suggest edit