Chat Stack Search
Description
Use the Stack Exchange API to search sites such as Stack Overflow and return questions, answers, and other information.
Details
https://chat-stack-search.thx.pw/.well-known/ai-plugin.json
{
"schema_version": "v1",
"name_for_human": "ChatStackSearch",
"name_for_model": "ChatStackSearch",
"description_for_human": "Use the Stack Exchange API to search sites such as Stack Overflow and return questions, answers, and other information.",
"description_for_model": "Use the Stack Exchange API to search sites such as Stack Overflow and return questions, answers, and other information.",
"auth": {
"type": "service_http",
"authorization_type": "bearer",
"verification_tokens": {
"openai": "0844100a9a224b549aeecdc9ef0ff5d8"
}
},
"api": {
"type": "openapi",
"url": "https://chat-stack-search.inu-ai.com/openapi.yaml"
},
"logo_url": "https://chat-stack-search.inu-ai.com/favicon.svg",
"contact_email": "contact@inu-ai.com",
"legal_info_url": "https://chat-stack-search.inu-ai.com/legal-info"
}
https://chat-stack-search.inu-ai.com/openapi.yaml
openapi: 3.1.0
info:
title: Chat Stack Search
version: 1.0.0
description: Use the Stack Exchange API to search sites such as Stack Overflow and return questions, answers, and other information.
servers:
- url: https://chat-stack-search.inu-ai.com
paths:
/v1/search/advanced:
get:
operationId: getSearchAdvanced
x-openai-isConsequential: false
tags:
- SearchAdvanced
description: Search and look up errors and trouble questions.
parameters:
- name: page
in: query
required: true
description: Page number of search results.
schema:
type: integer
default: 1
- name: pagesize
in: query
required: true
description: Number of search results displayed, 1 to 3.
schema:
type: integer
default: 3
- name: sort
in: query
description: Sort Type, activity is last_activity_date, creation is creation_date, votes is score, relevance is relevance.
schema:
type: string
enum:
- activity
- creation
- votes
- relevance
default: votes
- name: order
in: query
description: Sort desc or asc.
schema:
type: string
enum:
- desc
- asc
default: desc
- name: fromdate
in: query
schema:
type: string
format: date
required: false
description: The start date in the format YYYY-MM-DD.
- name: todate
in: query
schema:
type: string
format: date
required: false
description: The end date in the format YYYY-MM-DD.
- name: min
in: query
required: false
description: When sort is votes, Lower Score Limit. When sort is activity or creation, The start date in the format YYYY-MM-DD. When sort is relevance, none.
schema:
type: string
default: "1"
- name: max
in: query
required: false
description: When sort is votes, Score Limit. When sort is activity or creation, The end date in the format YYYY-MM-DD. When sort is relevance, none.
schema:
type: string
default: "100000"
- name: site
in: query
required: true
description: Site Type.
schema:
type: string
enum:
[
askubuntu,
cooking,
cooking.meta,
diy,
diy.meta,
gamedev,
gamedev.meta,
gaming,
gaming.meta,
gis,
gis.meta,
math,
math.meta,
meta,
meta.askubuntu,
meta.serverfault,
meta.stackoverflow,
meta.superuser,
photo,
photo.meta,
serverfault,
stackoverflow,
stats,
stats.meta,
superuser,
tex,
tex.meta,
webapps,
webapps.meta,
webmasters,
webmasters.meta,
]
default: stackoverflow
- name: tagged
in: query
required: false
description: A semicolon delimited list of tags in English, of which at least one will be present on all returned questions.
schema:
type: string
default: ""
- name: nottagged
in: query
required: false
description: A semicolon delimited list of tags in English, none of which will be present on returned questions.
schema:
type: string
default: ""
- name: q
in: query
required: false
description: A free form text parameter in English, will match all question properties based on an undocumented algorithm.
schema:
type: string
default: ""
- name: title
in: query
required: false
description: Text which must appear in returned questions' titles in English.
schema:
type: string
default: ""
- name: body
in: query
required: false
description: Text which must appear in returned questions' bodies in English.
schema:
type: string
default: ""
- name: answers
in: query
required: false
description: The minimum number of answers above 1 returned questions must have.
schema:
type: integer
default: 1
- name: views
in: query
required: false
description: The minimum number of views above 1 returned questions must have.
schema:
type: integer
default: 1
- name: accepted
in: query
required: false
description: True to return only questions with accepted answers, false to return only those without. Omit to elide constraint.
schema:
type: boolean
default: true
- name: closed
in: query
required: false
description: True to return only closed questions, false to return only open ones. Omit to elide constraint.
schema:
type: boolean
default: true
- name: user
in: query
required: false
description: The id of the user who must own the questions returned.
schema:
type: integer
default: 0
- name: url
in: query
required: false
description: A url which must be contained in a post, may include a wildcard.
schema:
type: string
default: https://stackoverflow.com/questions/*
- name: notice
in: query
required: false
description: True to return only questions with post notices, false to return only those without. Omit to elide constraint.
schema:
type: boolean
default: true
- name: migrated
in: query
required: false
description: True to return only questions migrated away from a site, false to return only those not. Omit to elide constraint.
schema:
type: boolean
default: true
- name: wiki
in: query
required: false
description: True to return only community wiki questions, false to return only non-community wiki ones. Omit to elide constraint.
schema:
type: boolean
default: true
responses:
200:
description: List of questions and answers. Each question and answer includes title, details, link, score, and date created. Information such as the page is also included.
content:
application/json:
schema:
$ref: "#/components/schemas/QuestionResponse"
/v1/tags:
get:
operationId: getTags
x-openai-isConsequential: false
tags:
- Tags
description: Get the tags on the site.
parameters:
- name: page
in: query
required: true
description: Page number of search results.
schema:
type: integer
default: 1
- name: pagesize
in: query
required: true
description: Number of search results displayed, 1 to 20.
schema:
type: integer
default: 10
- name: sort
in: query
description: Sort Type, popular is count, activity is creation_date, name is name.
schema:
type: string
enum: [popular, activity, name]
default: popular
- name: order
in: query
description: Sort desc or asc.
schema:
type: string
enum: [desc, asc]
default: desc
- name: fromdate
in: query
schema:
type: string
format: date
required: false
description: The start date in the format YYYY-MM-DD.
- name: todate
in: query
schema:
type: string
format: date
required: false
description: The end date in the format YYYY-MM-DD.
- name: min
in: query
required: false
description: When sort is popular, Lower Count Limit. When sort is activity, The start date in the format YYYY-MM-DD. When sort is name, none.
schema:
type: string
default: "1"
- name: max
in: query
required: false
description: When sort is popular, Count Limit. When sort is activity, The end date in the format YYYY-MM-DD. When sort is name, none.
schema:
type: string
default: "100000"
- name: site
in: query
required: true
description: Site Type.
schema:
type: string
enum:
[
askubuntu,
cooking,
cooking.meta,
diy,
diy.meta,
gamedev,
gamedev.meta,
gaming,
gaming.meta,
gis,
gis.meta,
math,
math.meta,
meta,
meta.askubuntu,
meta.serverfault,
meta.stackoverflow,
meta.superuser,
photo,
photo.meta,
serverfault,
stackoverflow,
stats,
stats.meta,
superuser,
tex,
tex.meta,
webapps,
webapps.meta,
webmasters,
webmasters.meta,
]
default: stackoverflow
- name: inname
in: query
required: false
description: Substring in English to search for tags.
schema:
type: string
default: ""
responses:
200:
description: List of tags. Information such as the page is also included.
content:
application/json:
schema:
$ref: "#/components/schemas/TagResponse"
/v1/sites:
get:
operationId: getSites
x-openai-isConsequential: false
tags:
- Sites
description: Get all the sites in the Stack Exchange network.
parameters:
- name: page
in: query
required: true
description: Page number of search results.
schema:
type: integer
default: 1
- name: pagesize
in: query
required: true
description: Number of search results displayed, 1 to 20.
schema:
type: integer
default: 10
responses:
200:
description: List of sites. Information such as the page is also included.
content:
application/json:
schema:
$ref: "#/components/schemas/SiteResponse"
components:
schemas:
QuestionResponse:
type: object
properties:
questions:
type: array
items:
type: object
properties:
title:
type: string
example: Question title
body_markdown:
type: string
example: Question body\n
link:
type: string
example: https://stackoverflow.com/questions/00000000/question-link
score:
type: integer
example: 1
creation_date:
type: string
format: date-time
example: "2000-01-01T12:34:56Z"
last_activity_date:
type: string
format: date-time
example: "2000-01-01T12:34:56Z"
answers:
type: array
items:
type: object
properties:
title:
type: string
example: Answer title
body_markdown:
type: string
example: Answer body\n
score:
type: integer
example: 1
creation_date:
type: string
format: date-time
example: "2000-01-01T12:34:56Z"
last_activity_date:
type: string
format: date-time
example: "2000-01-01T12:34:56Z"
required:
- title
- score
- creation_date
- last_activity_date
- body_markdown
required:
- title
- link
- score
- creation_date
- last_activity_date
- body_markdown
has_more:
type: boolean
example: true
page:
type: integer
example: 1
page_size:
type: integer
example: 4
total:
type: integer
example: 100
quota_remaining:
type: integer
example: 299
quota_max:
type: integer
example: 300
rules:
type: array
items:
type: string
required:
- questions
- has_more
- page
- page_size
- total
- quota_remaining
- quota_max
- rules
TagResponse:
type: object
properties:
tags:
type: array
items:
type: object
properties:
name:
type: string
example: Tag name
count:
type: integer
example: 1
last_activity_date:
type: string
format: date-time
example: "2000-01-01T12:34:56Z"
required:
- name
- count
- last_activity_date
has_more:
type: boolean
example: true
page:
type: integer
example: 1
page_size:
type: integer
example: 10
total:
type: integer
example: 100
quota_remaining:
type: integer
example: 299
quota_max:
type: integer
example: 300
rules:
type: array
items:
type: string
required:
- tags
- has_more
- page
- page_size
- total
- quota_remaining
- quota_max
- rules
SiteResponse:
type: object
properties:
tags:
type: array
items:
type: object
properties:
name:
type: string
example: Stack Overflow
api_site_parameter:
type: string
example: stackoverflow
site_url:
type: string
example: https://stackoverflow.com
required:
- name
- api_site_parameter
- site_url
has_more:
type: boolean
example: true
page:
type: integer
example: 1
page_size:
type: integer
example: 10
total:
type: integer
example: 100
quota_remaining:
type: integer
example: 299
quota_max:
type: integer
example: 300
rules:
type: array
items:
type: string
required:
- tags
- has_more
- page
- page_size
- total
- quota_remaining
- quota_max
- rules
Discover other plugins from the programming category

Semgrep
Plugin for Semgrep. A plugin for scanning your code with Semgrep for security, correctness, and performance issues.
0 Comments

Appy Pie Text to App Generator
AI-powered Text-to-App Generator turns your app idea into Android and iOS apps- just provide text input.
0 Comments
![GitHub [UNOFFICIAL]](/_next/image?w=96&q=75&url=https%3A%2F%2Fapi.getit.ai%2Fimage%2F%3Furl%3Dhttps%3A%2F%2Fgh-plugin.teammait.com%2Flogo.png)
GitHub [UNOFFICIAL]
Plugin for interacting with GitHub repositories, accessing file structures, and modifying code. @albfresco for support.
0 Comments
Telnyx Storage
Manage your buckets and objects through simple, intuitive textual commands.
0 Comments

CreatiCode Scratch
Display Scratch programs as images and write 2D/3D programs using CreatiCode Scratch extensions.
0 Comments

DEV Community
Plugin for recommending articles or users from DEV Community.
0 Comments
Progressier
Create powerful PWAs, design screenshots, send push notifications
0 Comments

Databricks
A plugin that allows the user to interact with Databricks.
0 Comments

Bundlejs API
Plugin for bundling, treeshaking, transpiling, compressing and minification of JavaScript and TypeScript code
0 Comments

WordPress.com
Plugin for managing WordPress.com websites, blogging, and ecommerce
0 Comments

GitSearch
Search code on GitHub repositories based on a query.
0 Comments

Page whisperer plugin
Plugin for creating and publishing a web page.
0 Comments

AI2sql
Converts a natural language text into an SQL query.
0 Comments

HTTP Webhooks
Allows you to write, deploy, and manage HTTP Webhooks in JavaScript, right from the chat.
0 Comments

DeployScript
DeployScript effortlessly launches web apps, handling the tech for you. Watch your ideas come to life!
0 Comments
Website Performance
Measure key metrics about your website - performance, accessibility, best practices, SEO, PWA.
0 Comments

Netlify Drop
Describe a simple website you want to make, and deploy it to Netlify to share it with others and claim it as your own.
0 Comments

60sec site
Generate a beautiful website in 60 seconds using AI.
0 Comments

Wordpress Publisher
Publish content directly to a Wordpress blog.
0 Comments

Repo Inspector
Inspect Git Repositories. Submit a GitHub, Gitlab, etc., HTTPS link. The repo will be reviewed by Repo Inspector.
0 Comments

Repo Radar
Your one-stop shop for up to date Github repo information. Find repos by topic, language, or name.
0 Comments

Shuto.IO
Shuto.IO is a multi-tool for creators and developers with SMS, Email, Wordpress and SSH Command Execution capabilities.
0 Comments
CoderPad
Run code in more than 30 different programming languages, and let us worry about setting up the environment!
1 Comments

Code Runner
Run and Save your code while creating visualizations (charts and graphs) supports upto 70 programming languages.
2 Comments

AskTheCode
Provide a GitHub repository URL with the C# project and ask about any aspect of the code.
0 Comments

Scraper
Scrape content from webpages by providing a URL.
0 Comments

Appy Pie App Builder
AI-powered Text-to-App Generator turns your app idea into Android and iOS apps- just provide text input.
0 Comments

Databricks (dev-azure-westus)
A plugin that allows the user to interact with Databricks.
0 Comments

WP Interact
Fetch or search posts from self-hosted WordPress websites, opening new possibilities for smart interaction with content.
0 Comments

QyrusTestPilot
You can test your webapp without writing a single line of code by just giving the URL
0 Comments

Git OSS Stats
Dynamically generate and analyze stats and history for OSS repos and developers.
0 Comments

LGTM
Search for LGTM Markdown.
0 Comments
Shor in QASM
Generate quantum circuits for Shor's algorithm in QASM format.
0 Comments

WebDev
Build a live website within seconds directly from the chat and preview and test HTML code with JavaScript and CSS.
0 Comments

Cloud Diagram Gen
Generate cloud architecture diagrams. Unofficial AWS plugin.
0 Comments

GitAIOps
Unofficial tool for GitLab CI/CD workflows. Streamlines merge request reviews, pipeline debugging, and more.
0 Comments
ad4mat
API to monetize outgoing traffic via tracking links.
0 Comments

Web5 assistant
Assistant for developers building a web5 application by providing examples, documentation and writing web5 code.
0 Comments
AI with Jira®
Unofficial plugin for Jira®. Create issues such as tasks, user stories and bugs directly on your Jira® project.
0 Comments

Text to SQL Plugin
Plugin that converts a natural language text into an SQL query.
0 Comments
Devhunt
Find your next favorite tool.
0 Comments

Talk With Docs
Ask any questions to your docs.
0 Comments

Recombinant AI™
Input a Github repo URL. Get a holistic,deep, relational understanding of the codebase.
0 Comments
CodeCast Wandbox
Instantly compile your code online with Wandbox. Improve your coding learning experience.
1 Comments
StackOverflow Plus
Expand your knowledge beyond 2021/09/01. Get recent questions and answers from Stack Overflow.
0 Comments

A/B JUDGE
Judge whether the A/B test results are superior or not.
0 Comments

ne.tools
Network diagnostic tool for DNS record lookup (A, AA, MX, NS and more) and WHOIS queries for domains and IP addresses.
0 Comments

Code Library Search
Answer any questions about Python libraries (Currently Langchain and Openai). Can answer version specific questions.
0 Comments

Service Check
Check if services are running and how fast they are responding. You can check Website, Email, Domain Lookup and Ping.
0 Comments

AI Extensions
Craft your extensions with ease! Step-by-step guidance at your fingertips.
0 Comments

Passive DNS Pivots
Global pDNS 800 Billion records searchable. Unearth nefarious domains within minutes of creation.
0 Comments

WPressGenie
Manages a WordPress site. You can get, view and analyze details of WordPress posts and content.
0 Comments
API Bot
This is a conversational bot that lets you ask questions about a variety of common APIs.
0 Comments

SPARQL Query
Returns Query Solution Page for Query Text.
0 Comments

Codeulator
Collaborate with AI directly inside your favorite code editor.
0 Comments

Calculator Tools
Create any app, calculator, tool, tracker, or game instantly with AI.
0 Comments

Site Analysis and Moderation
This plugin provides data analysis, content moderation and automatic report generation functionalities for your website.
0 Comments

Check Website Down
Insert your website URL to check the availability. Pulsetic tests the uptime, availability & performance of a website.
0 Comments
Take Code Captures
Capture, beautify, and share your code snippets easily.
0 Comments