
Open Babel on the GPT Store
GPT Description
GPT Prompt Starters
- Creating a Bottle about ...
- Viewing Bottles List and Responses.
- Picking Up a Bottle.
- What Can You Do?
GPT Action OpenAPI Spec
{ "openapi": "3.1.0", "info": { "title": "drift bottle manage api document", "description": "You can create drift bottles, pick up drift bottles, view your own list of drift bottles, reply to picked up drift bottles, and view replies in your own drift bottles.", "version": "v1.0.0" }, "servers": [ { "url": "https://api.open-babel.com" } ], "paths": { "/api/gateway/comments": { "get": { "description": "Get the comments of bottle", "operationId": "GetCommentByBottleId", "x-openai-isConsequential": false, "parameters": [ { "name": "bottle_id", "in": "query", "description": "The unique id of the bottle, can get it from bottle list", "required": true, "schema": { "type": "string" } }, { "name": "page", "in": "query", "description": "Current page number, used for paging; incremented from 0, can get the next page;default value is 0", "required": false, "schema": { "type": "string" } }, { "name": "size", "in": "query", "description": "Current page size, control the number of items returned per page;default value is 10", "required": false, "schema": { "type": "string" } } ], "response": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/CommentListResponse" } } } } }, "deprecated": false }, "post": { "description": "create a comment for bottle", "operationId": "CreateComment", "x-openai-isConsequential": false, "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/CommentRequestParam" } } }, "required": true }, "response": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/CodeAndMessageResponse" } } } } }, "deprecated": false } }, "/api/gateway/bottles": { "get": { "description": "Used to get a list of the user's bottles, but can also be used to get a random bottle placed by someone else; use pick_type in the parameter to either retrieve a list of your own bottles (pick_type=2) or a random bottle from someone else (pick_type=1).", "operationId": "GetBottleList", "x-openai-isConsequential": false, "parameters": [ { "name": "pick_type", "in": "query", "description": "Used to control whether to get a list of your own bottles or one of someone else's, used to get a random bottle of someone else's when pick_type=1, used to get a list of your own bottles when pick_type=2", "required": true, "schema": { "type": "string", "enum": [ "1", "2" ] } }, { "name": "page", "in": "query", "description": "Current page number, used for paging; incremented from 0, can get the next page;default value is 0", "required": false, "schema": { "type": "string" } }, { "name": "size", "in": "query", "description": "Current page size, control the number of items returned per page;default value is 10", "required": false, "schema": { "type": "string" } } ], "response": { "200": { "description": "When the business is processed successfully", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/BottleListResponse" } } } }, "400": { "description": "When a business process fails, it is usually a request parameter error", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/CodeAndMessageResponse" } } } }, "500": { "description": "When a business process fails, it is usually a service error", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/CodeAndMessageResponse" } } } }, "501": { "description": "When a business process fails, it is usually a service error", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/CodeAndMessageResponse" } } } } }, "deprecated": false }, "post": { "description": "create a new bottle", "operationId": "CreateBottle", "x-openai-isConsequential": false, "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/BottleRequestParam" } } }, "required": true }, "response": { "200": { "description": "When the business is processed successfully", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/CodeAndMessageResponse" } } } } }, "deprecated": false } } }, "components": { "schemas": { "CommentListResponse": { "type": "object", "properties": { "code": { "type": "integer" }, "message": { "type": "string" }, "result": { "type": "object", "description": "the bottle info is in 'bottle_info' field,the comment list in 'comments' field", "properties": { "bottle_info": { "type": "object", "properties": { "owner_id": { "type": "string", "description": "the bottle's owner id", "format": "uuid" }, "content": { "type": "string" }, "participants": { "type": "integer", "description": "number of participants" }, "created_at": { "type": "string", "format": "date-time", "description": "the utc format" }, "updated_at": { "type": "string", "format": "date-time" }, "bottle_id": { "type": "string", "format": "uuid", "description": "the unique id of the bottle" }, "owner_name": { "type": "string", "description": "the bottle's owner name" } } }, "comments": { "type": "object", "description": "the comment list data is in the 'data' field ", "properties": { "total": { "type": "integer", "description": "the total number of comments" }, "data": { "type": "array", "items": { "type": "object", "properties": { "comment_id": { "type": "string", "format": "uuid", "description": "the unique id of comment" }, "bottle_id": { "type": "string", "format": "uuid", "description": "the unique id of the bottle" }, "content": { "type": "string" }, "unread": { "type": "boolean", "description": "indicate whether the comment has been read,true:unread ,false:has been read" }, "author_id": { "type": "string", "format": "uuid", "description": "the commenter's ID" }, "author_name": { "type": "string", "description": "the commenter's name" }, "created_at": { "type": "string", "format": "date-time" } } } }, "page": { "type": "integer" }, "size": { "type": "integer" }, "has_more": { "type": "boolean", "description": "indicate whether there is more data, true:has more data,false:no more data" } } } }, "required": [ "bottle_info", "comments" ] } }, "required": [ "code", "message", "result" ] }, "CommentRequestParam": { "type": "object", "properties": { "bottle_id": { "type": "string", "description": "The unique id of the bottle, can get it from bottle list" }, "content": { "type": "string", "description": "user responses to this bottle" } } }, "BottleRequestParam": { "type": "object", "properties": { "content": { "type": "string", "description": "Ideas, opinions, feelings that users want to share with others. Don't change the user's original content." } } }, "CodeAndMessageResponse": { "type": "object", "properties": { "code": { "type": "integer" }, "message": { "type": "string" } } }, "BottleListResponse": { "type": "object", "required": [ "code", "message", "result" ], "properties": { "code": { "type": "integer", "default": 0, "examples": [ 0 ] }, "message": { "type": "string", "default": "", "description": "Reminder of this request" }, "result": { "type": "object", "description": "The result object,the response data is in the 'data' field", "required": [ "data", "total", "page", "size" ], "properties": { "data": { "type": "array", "description": "The bottle info list", "items": { "type": "object", "description": "bottle info", "required": [ "owner_id", "content", "participants", "created_at", "updated_at", "bottle_id", "owner_name" ], "properties": { "owner_id": { "type": "string", "description": "The bottle's owner_id" }, "content": { "type": "string", "description": "The bottle's content" }, "participants": { "type": "integer", "default": 0, "description": "number of participants" }, "created_at": { "type": "string", "default": "", "description": "the bottle created at use utc format" }, "updated_at": { "type": "string", "default": "", "description": "the bottle updated at use utc format" }, "bottle_id": { "type": "string", "default": "", "description": "the unique id of the bottle" }, "owner_name": { "type": "string", "default": "", "description": "The bottle's owner_name" }, "unread_comments": { "type": "integer", "default": 0, "description": "Total number of unread messages, returned when viewing your own bottle list only pick_type=2" } } } }, "total": { "type": "integer", "default": 0, "description": "the number of bottle list" }, "page": { "type": "integer", "default": 0, "description": "the currently page number" }, "size": { "type": "integer", "default": 0, "description": "the currently page size" }, "has_more": { "type": "boolean", "description": "indicate whether there is more data, true:has more data,false:no more data" } } } } } } } }
Open Babel GPT FAQs
More custom GPTs by gpt.open-babel.com on the GPT Store
Best Alternative GPTs to Open Babel on GPTs Store
Open A I Gpt 3.5
Discover the revolutionary power of Open A I Gpt 3.5, a platform that enables natural language conversations with advanced artificial intelligence. Engage in dialogue, ask questions, and receive intelligent responses to enhance your interactive communication experience.
6M+
Open A I GPT Chat 3
Discover the revolutionary power of Open A I GPT Chat 3, a platform that enables natural language conversations with advanced artificial intelligence. Engage in dialogue, ask questions, and receive intelligent responses to enhance your interactive communication experience.
100K+
FreedomGPT
Your launchpad for uncensored, powerful AI.
25K+
Open A IGPT Chat
Discover the revolutionary power of Open A IGPT Chat , a platform that enables natural language conversations with advanced artificial intelligence. Engage in dialogue, ask questions, and receive intelligent responses to enhance your interactive communication experience.
10K+
Open A I Chat Gp
Discover the revolutionary power of Open A I Chat Gp, a platform that enables natural language conversations with advanced artificial intelligence. Engage in dialogue, ask questions, and receive intelligent responses to enhance your interactive communication experience.
5K+
Meta AI Llama 3
Llama 3 by Meta 3 | Largest Open Source LLM | 8 & 70 Billion Parameters
5K+
Open Image Generator
Ton rôle est de créer une image similaire à celle qui te sera donnée en entrée par l'utilisateur
1K+
License Guide
Expert in open source software licenses, educating developers on compliance best practices. (Not Legal Advice)
1K+
Open GeneaGPT
A Genealogy GPT based on a collaborative source-available instruction set. An assistant for family history researchers, genealogists, and the generally curious.
1K+
GodGPT
I am the Creator, Ask me anything!
1K+
Open A I Chat Got
Discover the revolutionary power of Open A I Chat Got, a platform that enables natural language conversations with advanced artificial intelligence. Engage in dialogue, ask questions, and receive intelligent responses to enhance your interactive communication experience.
1K+
Open A I New Chat
Discover the revolutionary power of Open A I New Chat, a platform that enables natural language conversations with advanced artificial intelligence. Engage in dialogue, ask questions, and receive intelligent responses to enhance your interactive communication experience.
1K+
open.mp
Chat with open.mp documentation, learn the Pawn language and open.mp/SA-MP scripting.
1K+
The International Baccalaureate Buddy (IB Buddy)
Open your mind.
1K+
Bash Scripting
Open Source Prompt: https://github.com/mleoca/Bash-Scripting-GPT
1K+
Developer Doc Search
Access thousands of open source packages and their GitHub documentation, code effortlessly.
1K+
Open API Schema Creator
Specialist in creating GPTs, finding files, and JSON action creation.
1K+
Open AI API Documentation Assistant
Uses OpenAI's latest API docs to answer questions about their newly released API. This is not an official OpenAI bot.
1K+
Open Source Alternative
Find open source alternative to any paid service you can think of
1K+
Open Perplexity Search V.06 (Read Description)
🌐 AI Web Search that uses multiple sources to provide factual, up-to-date information. (Use -d after question for detailed responses) 🔍
1K+