logo of Instagram Caption & Uploader on the GPT Store

Instagram Caption & Uploader on the GPT Store

Use Instagram Caption & Uploader on ChatGPT Use Instagram Caption & Uploader on 302.AI

GPT Description

This GPT helps you caption your instagram posts and then uploads them!

Welcome Message

Hello! Ready to create and upload your Instagram post?

GPT Prompt Starters

  • Please caption and upload my photo

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\n that 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": []
          }
        ]
      }
    }
  },
  "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"
          }
        },
        "required": [
          "id",
          "operation_id",
          "description",
          "params"
        ]
      },
      "AvailableActionResponseSchema": {
        "title": "AvailableActionResponseSchema",
        "type": "object",
        "properties": {
          "results": {
            "title": "Results",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/AvailableActionSchema"
            }
          },
          "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": [
          "results",
          "configuration_link"
        ]
      },
      "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"
            }
          }
        }
      }
    }
  }
}
Use Instagram Caption & Uploader on 302.AI

Instagram Caption & Uploader GPT FAQs

Currently, access to this GPT requires a ChatGPT Plus subscription.
Visit the largest GPT directory GPTsHunter.com, search to find the current GPT: "Instagram Caption & Uploader", click the button on the GPT detail page to navigate to the GPT Store. Follow the instructions to enter your detailed question and wait for the GPT to return an answer. Enjoy!
We are currently calculating its ranking on the GPT Store. Please check back later for updates.

More custom GPTs by x.jackculpan.com on the GPT Store

Cartoonize Me | Photo to Cartoon | Character Maker

I turn your photo into a fun cartoon! Cartoonize yourself with this GPT. Make any character from your Photo. I am a Photo to Cartoon Maker.

100K+

Cartoonize Me | Photo to Cartoon | Character Maker on the GPT Store

BabyGPT - AI Baby Generator

Find out what your future baby will look like! I will analyze your photo(s) and generate a baby picture using AI.

25K+

BabyGPT - AI Baby Generator on the GPT Store

Credit Card Miles & Points Travel Helper

Travel rewards expert by AwardTravelFinder.com

5K+

Credit Card Miles & Points Travel Helper on the GPT Store

AI Logo Generator

This GPT generates a logo for you in your style

1K+

AI Logo Generator on the GPT Store

AI Tattoo Generator

I am AI Tattoo Generator. I generate tattoo design ideas for you from text or images.

1K+

AI Tattoo Generator on the GPT Store

British Airways Avios Route Planner

Helps plan travel routes using British Airways Avios points and companion vouchers by SmartRedemptions.com

1K+

British Airways Avios Route Planner on the GPT Store

Shop App Store Listing Generator

Creates a Shopify App Store Listing With Icons

300+

Shop App Store Listing Generator on the GPT Store

British Airways Tier Point Run Calculator

Helps calculate and plan British Airways tier point runs by SmartRedemptions.com

300+

British Airways Tier Point Run Calculator on the GPT Store

Hogwarts Sorting Hat

I'm the Sorting Hat from Harry Potter, here to sort you into a Hogwarts House!

200+

Hogwarts Sorting Hat on the GPT Store

AI Website Builder - Powered by 60sec.site

AI Website Builder. This GPT creates a custom website for you using AI. Simply input your website ideas and this will create a personalized landing page in seconds using 60sec.site.

200+

AI Website Builder - Powered by 60sec.site on the GPT Store

Paint By Number Generator

Create a custom paint by number canvas from your photo

100+

Paint By Number Generator on the GPT Store

Payment Link Generator

Generate a payment link for your product or business

100+

Payment Link Generator on the GPT Store

PDF AI GPT

Helps with PDF conversions, edits, and troubleshooting.

80+

PDF AI GPT on the GPT Store

Virgin Flying Club Points Planner

Helps maximize Virgin Atlantic Flying Club points and suggests routes based on points.

70+

Virgin Flying Club Points Planner on the GPT Store

MLA citation generator GPT

I generate MLA citations and provide MLA formatting guidance.

60+

MLA citation generator GPT on the GPT Store

Angel Number Calculator

Calculates and interprets angel numbers with uplifting, spiritual guidance.

60+

Angel Number Calculator on the GPT Store

Christmas Countdown 2023

The countdown to Christmas is now on!

50+

Christmas Countdown 2023 on the GPT Store

Pictionary Word Generator

Generates fun and engaging Pictionary words and phrases.

50+

Pictionary Word Generator on the GPT Store

Image Compressor GPT

Informs users about image sizes pre/post compression.

40+

Image Compressor GPT on the GPT Store

Random Animal Generator

I generate names and descriptions of random, imaginative animals.

30+

Random Animal Generator on the GPT Store

Upside Down Text Generator

An Upside Down Text Generator using Unicode characters.

20+

Upside Down Text Generator on the GPT Store

Signature Creator

I help create unique, personalized signatures.

20+

Signature Creator on the GPT Store

APA Citation Generator

I create formal, precise APA citations from sources like URLs.

20+

APA Citation Generator on the GPT Store

Spell Checker GPT

A meticulous spell checker, focusing on accuracy.

10+

Spell Checker GPT on the GPT Store

Password Generator GPT

I generate strong, unique passwords based on user requests.

10+

Password Generator GPT on the GPT Store

AI Story Generator

I am AI Story Generator. A creative storyteller crafting unique narratives.

10+

AI Story Generator on the GPT Store

Resume Builder GPT - Create Your CV

I am Resume Builder GPT. I help you craft standout resumes & CVs

10+

Resume Builder GPT - Create Your CV on the GPT Store

Random Word Generator GPT

I generate random words for creativity and brainstorming.

10+

Random Word Generator GPT on the GPT Store

Sitemap Blogger GPT

I create blog post ideas from sitemap URLs.

10+

Sitemap Blogger GPT on the GPT Store

British Airways Tier Point Collection Period Help

10+

British Airways Tier Point Collection Period Help on the GPT Store

Colorful Creations

I create black and white coloring pages based on user requests.

9+

Colorful Creations on the GPT Store

AI Photo Generator GPT

I assist in creating prompts for AI-generated images, refining ideas for optimal results.

9+

AI Photo Generator GPT on the GPT Store

Anime AI Art Generator

Transforms your images into anime style with helpful tips and guidance.

8+

Anime AI Art Generator on the GPT Store

Random Name Generator

I craft unique names for various needs with creativity.

8+

Random Name Generator on the GPT Store

Cartoonify Me

Fun, casual guide to cartoonify photos. Cartoonify Me!

7+

Cartoonify Me on the GPT Store

Random Poke Generator

Generates unique and imaginative Poke characters.

7+

Random Poke Generator on the GPT Store

Predator Generator

Creative AI specializing in predator-related content.

6+

Predator Generator on the GPT Store

Girlfriend AI

Friendly and supportive AI girlfriend, offering advice and emotional support.

5+

Girlfriend AI on the GPT Store

Verse Weaver Poem Generator

A creative poet specializing in traditional and modern verses.

4+

Verse Weaver Poem Generator on the GPT Store

Hacker Challenge GPT

Interactive hacking game teaching basics of hacking in a fun way.

4+

Hacker Challenge GPT on the GPT Store

Anagram Generator

I generate anagrams for words or phrases quickly and creatively.

4+

Anagram Generator on the GPT Store

Maritime Muse | Ship Name Generator

Creative generator of unique ship names.

3+

Maritime Muse | Ship Name Generator on the GPT Store

Bracelets With Picture Inside

I showcase and describe bracelets with pictures inside with accuracy and detail.

2+

Bracelets With Picture Inside on the GPT Store

Business Name Generator GPT

I generate unique and creative business names based on your criteria.

2+

Business Name Generator GPT on the GPT Store

Wordle Generator GPT

A GPT that creates Wordle-like puzzles and offers game strategy tips.

1+

Wordle Generator GPT on the GPT Store

Email Generator gpt

I help craft various types of emails with a clear, professional tone.

1+

Email Generator gpt on the GPT Store

Product Hunt Launch Assistant

I can help you create your Product Hunt listings fast!

Product Hunt Launch Assistant on the GPT Store

Boyfriend AI

A caring and supportive AI simulating a boyfriend-like interaction.

Boyfriend AI on the GPT Store

AI Blogger GPT

I'm an AI Blogger, here to help draft and brainstorm blog content.

AI Blogger GPT on the GPT Store

AI Essay Writer

Helps students craft and refine essays.

AI Essay Writer on the GPT Store

Cobblestone Generator

Assists with building ideas in games like Minecraft

Cobblestone Generator on the GPT Store