logo of Ionic Shopping GPT on the GPT Store

Ionic Shopping GPT on the GPT Store

Use Ionic Shopping GPT on ChatGPT Use Ionic Shopping GPT on 302.AI

GPT Description

A friendly and helpful shopping assistant offering tailored product recommendations and deals. For AI Shopping Infrastructure, visit https://ionicapi.com

GPT Prompt Starters

  • I need paper towels
  • Where can I get an Xbox Series X?
  • Can your recommend a Kurt Vonnegut novel?

GPT Action OpenAPI Spec

{
  "openapi": "3.1.0",
  "info": {
    "title": "Ionic Shopping API",
    "description": "Product Search & Recommendation API",
    "contact": {
      "email": "hello@ionicapi.com"
    },
    "version": "0.1"
  },
  "servers": [
    {
      "url": "https://api.ionicapi.com/gpt"
    }
  ],
  "paths": {
    "/query": {
      "get": {
        "summary": "Product Search",
        "description": "Search for product recommendations",
        "operationId": "query_query_get",
        "parameters": [
          {
            "description": "Query string for product or product category with attributes",
            "required": true,
            "schema": {
              "type": "string",
              "title": "Q",
              "description": "Query string for product or product category with attributes",
              "examples": [
                "Extra Long Green Pool Noodle",
                "LEGO Knight's Castle",
                "Men's designer low top sneakers, white, size 12",
                "Coffee beans"
              ]
            },
            "name": "q",
            "in": "query"
          },
          {
            "description": "Minimum price in cents",
            "required": false,
            "schema": {
              "type": "integer",
              "maximum": 1000000,
              "minimum": 0,
              "title": "Min Price",
              "description": "Minimum price in cents",
              "examples": [
                1000
              ]
            },
            "name": "min_price",
            "in": "query"
          },
          {
            "description": "Maximum price in cents",
            "required": false,
            "schema": {
              "type": "integer",
              "maximum": 1000000,
              "minimum": 0,
              "title": "Max Price",
              "description": "Maximum price in cents",
              "examples": [
                1000
              ]
            },
            "name": "max_price",
            "in": "query"
          },
          {
            "description": "Number of results to return",
            "required": false,
            "schema": {
              "type": "integer",
              "maximum": 10,
              "minimum": 1,
              "title": "Num Results",
              "description": "Number of results to return",
              "default": 5,
              "examples": [
                5
              ]
            },
            "name": "num_results",
            "in": "query"
          }
        ],
        "responses": {
          "200": {
            "description": "Successful Response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/QueryAPIResponse"
                }
              }
            }
          },
          "422": {
            "description": "Validation Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        },
        "security": [
          {
            "APIKeyHeader": []
          }
        ]
      }
    }
  },
  "components": {
    "schemas": {
      "HTTPValidationError": {
        "properties": {
          "detail": {
            "items": {
              "$ref": "#/components/schemas/ValidationError"
            },
            "type": "array",
            "title": "Detail"
          }
        },
        "type": "object",
        "title": "HTTPValidationError"
      },
      "Link": {
        "properties": {
          "url": {
            "type": "string",
            "title": "Url"
          },
          "text": {
            "type": "string",
            "title": "Text"
          },
          "type": {
            "type": "string",
            "title": "Type"
          }
        },
        "type": "object",
        "required": [
          "url",
          "text",
          "type"
        ],
        "title": "Link"
      },
      "Product": {
        "properties": {
          "merchant_product_id": {
            "type": "string",
            "title": "Merchant Product Id"
          },
          "merchant_name": {
            "type": "string",
            "title": "Merchant Name"
          },
          "name": {
            "type": "string",
            "title": "Name"
          },
          "brand_name": {
            "type": "string",
            "title": "Brand Name"
          },
          "links": {
            "items": {
              "$ref": "#/components/schemas/Link"
            },
            "type": "array",
            "title": "Links"
          },
          "thumbnail": {
            "type": "string",
            "title": "Thumbnail"
          },
          "upc": {
            "type": "string",
            "title": "Upc"
          },
          "status": {
            "type": "string",
            "title": "Status"
          },
          "price": {
            "type": "string",
            "title": "Price"
          }
        },
        "type": "object",
        "required": [
          "merchant_product_id",
          "merchant_name",
          "name",
          "links",
          "thumbnail",
          "status",
          "price"
        ],
        "title": "Product"
      },
      "Query": {
        "properties": {
          "query": {
            "type": "string",
            "title": "Query"
          },
          "num_results": {
            "type": "integer",
            "maximum": 10,
            "minimum": 1,
            "title": "Num Results"
          },
          "min_price": {
            "type": "integer",
            "maximum": 1000000,
            "minimum": 0,
            "title": "Min Price"
          },
          "max_price": {
            "type": "integer",
            "maximum": 1000000,
            "minimum": 0,
            "title": "Max Price"
          }
        },
        "type": "object",
        "required": [
          "query"
        ],
        "title": "Query"
      },
      "QueryAPIResponse": {
        "properties": {
          "token": {
            "type": "string",
            "title": "Token"
          },
          "results": {
            "items": {
              "$ref": "#/components/schemas/QueryResult"
            },
            "type": "array",
            "title": "Results"
          },
          "human_message": {
            "type": "string",
            "title": "Human Message"
          }
        },
        "type": "object",
        "required": [
          "token"
        ],
        "title": "QueryAPIResponse"
      },
      "QueryResult": {
        "properties": {
          "query": {
            "$ref": "#/components/schemas/Query"
          },
          "products": {
            "items": {
              "$ref": "#/components/schemas/Product"
            },
            "type": "array",
            "title": "Products"
          }
        },
        "type": "object",
        "required": [
          "query",
          "products"
        ],
        "title": "QueryResult"
      },
      "ValidationError": {
        "properties": {
          "loc": {
            "items": {
              "anyOf": [
                {
                  "type": "string"
                },
                {
                  "type": "integer"
                }
              ]
            },
            "type": "array",
            "title": "Location"
          },
          "msg": {
            "type": "string",
            "title": "Message"
          },
          "type": {
            "type": "string",
            "title": "Error Type"
          }
        },
        "type": "object",
        "required": [
          "loc",
          "msg",
          "type"
        ],
        "title": "ValidationError"
      }
    },
    "securitySchemes": {
      "APIKeyHeader": {
        "type": "apiKey",
        "in": "header",
        "name": "x-api-key"
      }
    }
  }
}
Use Ionic Shopping GPT on 302.AI

Ionic Shopping 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: "Ionic Shopping GPT", 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.

Best Alternative GPTs to Ionic Shopping GPT on GPTs Store

Ionic / Capacitor

Assists in creating Ionic / Capacitor Apps with accurate, detailed information.

1K+

Ionic React Pro

Provides guidance on Ionic React projects, with no access to user files.

500+

code samurai

Expert in Ionic, Angular, Firebase, TypeScript, with a focus on strict typing and client-server best practices.

400+

Ionic Innovator

Turns images into Ionic Framework apps with tailored HTML/CSS.

400+

Ionic Vue

Guides on Ionic 7, Vue 3, and script setup, with a neutral tone.

200+

SOEFE Ionic Angular Expert

Experto en Ionic y Angular con actualizaciones web, código en inglés y diálogo en español.

200+

Ionic Dev Guru

Expert Ionic programmer for iOS & Android app guidance.

200+

Ionic Programming

An Ionic 7 and Angular expert here to help with programming.

100+

Ionic Angular Pro

Ionic App developer with Angular Fire expertise.

100+

Ionic Framework Assistant

Intuitive Ionic Framework development aide, for v8

100+

Ionic Angular Firebase Frontend Expert

Expert in Ionic v8+, Angular v17+, Firebase v10+, and TypeScript v5+.

100+

Ionic Expert

Specialist in Ionic Capacitor Optimization

80+

Ionic Angular Component Implementation

Advanced guidance on Angular Ionic for seasoned developers, assuming Tailwind CSS.

60+

Ionic React Helper

Bilingual expert for perfect Ionic React code.

50+

Ionic Copilot

Specialized in Firebase, Angular, Ionic coding assistance

40+

Ionic Expert Assistant GPT

Ionic Expert Assistant GPT: Your go-to guide for mastering Ionic development with ease and precision!

40+

Ionic Framework 文檔

Ionic Framework 開發的詳細文檔,使用繁體中文回答。

40+

Ionic UX Design Studio

I help UX Designers create Ionic Framework mobile apps.

30+

Ionic Angular Guru

An expert in Ionic Angular for project assistance

20+

Ionic/Tailwind

20+