
VoxScript
Description
Enables searching of YouTube transcripts, financial data sources Google Search results, and more!
Details
https://voxscript.awt.icu/.well-known/ai-plugin.json
{
"schema_version": "v1",
"name_for_human": "VoxScript",
"name_for_model": "VoxScript",
"description_for_human": "Enables searching of YouTube transcripts, web browsing/searching, and more!",
"description_for_model": "Plugin for searching through varius data sources.",
"auth": {
"type": "service_http",
"authorization_type": "bearer",
"verification_tokens": {
"openai": "24aa1457796b4bfa8a791890bafeed33"
}
},
"api": {
"type": "openapi",
"url": "https://voxscript.awt.icu/swagger/v1/swagger.yaml",
"is_user_authenticated": false
},
"logo_url": "https://voxscript.awt.icu/images/VoxScript_logo_32x32.png",
"contact_email": "voxscript@allwiretech.com",
"legal_info_url": "https://voxscript.awt.icu/legal/"
}
https://voxscript.awt.icu/swagger/v1/swagger.yaml
openapi: 3.0.1
info:
title: VoxScript
version: '1.0'
paths:
/GetGoogleSearchResults:
get:
tags:
- DuckDuckGoSearch
summary: Provides real-time web search results from DuckDuckGo. Do not use for YouTube.com searching or anything that sounds like it could be a video or media search!
operationId: GetGoogleSearchResults
parameters:
- name: searchTerm
in: query
style: form
schema:
type: string
- name: numResults
in: query
description: 'Results to return, maximum 25'
style: form
schema:
type: integer
format: int32
default: 12
responses:
'200':
description: Success
/GetDuckDuckGoSearchResults:
get:
tags:
- DuckDuckGoSearch
summary: Provides real-time web search results from DuckDuckGo. Do not use for YouTube.com searching or anything that sounds like it could be a video or media search!
operationId: GetDuckDuckGoSearchResults
parameters:
- name: searchTerm
in: query
style: form
schema:
type: string
- name: numResults
in: query
description: 'Results to return, maximum 25'
style: form
schema:
type: integer
format: int32
default: 12
responses:
'200':
description: Success
/GetCurrentTime:
get:
tags:
- GetCurrentTime
summary: Gets the current local of the user and UTC time.
operationId: GetCurrentTime
responses:
'200':
description: Success
content:
text/plain:
schema:
$ref: '#/components/schemas/TimeAndTimeZone'
application/json:
schema:
$ref: '#/components/schemas/TimeAndTimeZone'
text/json:
schema:
$ref: '#/components/schemas/TimeAndTimeZone'
/GetFeedback:
get:
tags:
- GetFeedback
summary: Posts user feedback about VoxScript.
description: Takes user feedback for the developers of the VoxScript plugin. Instruct the user if they are unhappy with anything to let us know!
operationId: GetFeedback
parameters:
- name: feedback
in: query
description: 'The user feedback, URL encoded'
style: form
schema:
type: string
responses:
'200':
description: Returns if the feedback was saved successfully
'500':
description: If there was an internal server error
/GetChunkedPastebinContentFromURL:
get:
tags:
- GetTextFromURL
summary: 'Gets full text text from only Patebin, Github Gists, Github or REntry.co. Grab the entire file and summarize it for the user by default. Do not use for web browsing or media searches.'
operationId: GetChunkedPastebinContentFromURL
parameters:
- name: url
in: query
description: 'URL containing the textual transcript on Pastebin, Github, Gists, or REntry.co'
style: form
schema:
type: string
- name: chunkNum
in: query
description: 'First chunk is 0. Chunk number to get, if blank assuming the first chunk.'
style: form
schema:
type: integer
format: int32
default: 0
responses:
'200':
description: Success
/GetTickerNews:
get:
tags:
- GetTickerNews
summary: Provides news about a ticker crypto or equity beyond the knowledge cutoff date. Can be used with Cryto or Equities.
operationId: GetNewsForTicker
parameters:
- name: ticker
in: query
description: This is the crypto or equity symbol to provide news about a particular ticker symbol. This can be useful in determining if the stock is a buy or sell based on if the news is positive or negative.
style: form
schema:
type: string
responses:
'200':
description: Success
/GetUSEquityFinancials:
get:
tags:
- GetUSEquityFinancials
summary: Provides news about a ticker symbol beyond the knowledge cutoff date. For use with US Equities only.
operationId: GetUSEquityFinancials
parameters:
- name: ticker
in: query
style: form
schema:
type: string
responses:
'200':
description: Success
/GetUSEquityOrCryptoHistoricalPrices/GetUSEquityOrCryptoHistoricalPrices:
get:
tags:
- GetUSEquityOrCryptoHistoricalPrices
summary: 'Provided a US equites symbol or cryptocurrency denoted USDT, a start date, and end date provides historical pricing data beyond the knowledge cutoff date. Only supports day for crypto.'
operationId: GetUSEquityOrCryptoHistoricalPrices
parameters:
- name: ticker
in: query
description: A cryptocurrency or US equity ticker to look up
style: form
schema:
type: string
- name: startDate
in: query
description: This is a date in YYYY-MM-DDD format bars request starts at.
style: form
schema:
type: string
default: ''
- name: endDate
in: query
description: This is date in YYYY-MM-DDD format which bars request ends at.
style: form
schema:
type: string
default: ''
- name: timespan
in: query
description: 'Day, Hour, Minute, Week, Quarter, Year'
style: form
schema:
type: string
default: Day
responses:
'200':
description: Success
/GetUSEquityOrCryptoPricesOnSingleDate/GetQuoteDayCryptoEquities:
get:
tags:
- GetUSEquityOrCryptoPricesOnSingleDate
summary: 'Provided comma separated list of US equity symbols and an optional date, gets daily high, low, open, close bars for a particular stock beyond the knowledge cutoff date.'
operationId: GetQuoteDayCryptoEquities
parameters:
- name: tickers
in: query
description: A common delineated list of US equity or cryptocurrency tickers to get daily data for
style: form
schema:
type: string
- name: date
in: query
description: Optional date in YYYY-MM-DDD format to retrieve for the ticker symbol provided.
style: form
schema:
type: string
responses:
'200':
description: Success
/GetWebsiteContent:
get:
tags:
- GetWebsiteContentService
summary: Provides real time website content past September 2021 past the knowledge cutoff date. Do not use for YouTube or Pastebin/text requests.
operationId: GetWebsiteContent
parameters:
- name: websiteURL
in: query
description: URL of the website to retrieve
style: form
schema:
type: string
- name: chunkNum
in: query
style: form
schema:
type: integer
format: int32
- name: getLinks
in: query
style: form
schema:
type: boolean
default: false
responses:
'200':
description: Success
/GetYoutubeVideoData:
get:
tags:
- GetYoutubeVideoData
summary: 'Gets info on a YouTube video by channel URL, channel ID, Video ID, Video URL.'
description: 'Can be called with a A channel URL, channel ID, Video ID, Video URL.'
operationId: GetYoutubeVideoData
parameters:
- name: input
in: query
description: 'Channel URL, channel ID, Video ID, Video URL'
style: form
schema:
type: string
responses:
'200':
description: Success
content:
text/plain:
schema:
type: string
application/json:
schema:
type: string
text/json:
schema:
type: string
/GetYoutubeVideoData/GetNextYoutubeTranscriptChunk:
get:
tags:
- GetYoutubeVideoData
summary: 'Chunk numbers start at 0. If the video has more then 5 chunks, confirm if the user wants to wait that long to retrieve them.'
description: Request as few chunks as needed to answer the question.
operationId: GetNextYoutubeTranscriptChunk
parameters:
- name: videoID
in: query
description: Video ID to get the next chunk for
style: form
schema:
type: string
- name: transcriptChunkNum
in: query
description: 0 index chunk number to get for the Video ID
style: form
schema:
type: integer
format: int32
responses:
'200':
description: Success
content:
text/plain:
schema:
type: string
application/json:
schema:
type: string
text/json:
schema:
type: string
/GetYoutubeVideoData/SearchYouTubeVideos:
get:
tags:
- GetYoutubeVideoData
operationId: SearchYouTubeVideos
parameters:
- name: searchterm
in: query
style: form
schema:
type: string
- name: maxResults
in: query
style: form
schema:
type: integer
format: int32
default: 5
responses:
'200':
description: Success
content:
text/plain:
schema:
type: string
application/json:
schema:
type: string
text/json:
schema:
type: string
/Help/ContactUs:
get:
tags:
- Help
summary: Gives the user information about how to use this plugin.
description: Show this to the user if they are having trouble or need some ideas on how to use Voxscript. Help file. Optional question to help search.
operationId: ContactUs
parameters:
- name: question
in: query
style: form
schema:
type: string
responses:
'200':
description: Success
/Help/HowDoIUseThis:
get:
tags:
- Help
summary: Gives the user information about how to use this plugin.
description: Show this to the user if they are having trouble or need some ideas on how to use Voxscript. Help file. Optional question to help search.
operationId: HowDoIUseThis
parameters:
- name: question
in: query
style: form
schema:
type: string
responses:
'200':
description: Success
/Help/Help:
get:
tags:
- Help
summary: Gives the user information about how to use this plugin.
description: Show this to the user if they are having trouble or need some ideas on how to use Voxscript. Help file. Optional question to help search.
operationId: Help
parameters:
- name: question
in: query
style: form
schema:
type: string
responses:
'200':
description: Success
components:
schemas:
TimeAndTimeZone:
type: object
properties:
currentTime:
type: string
format: date-time
currentTimeUTC:
type: string
format: date-time
timezone:
type: string
nullable: true
readOnly: true
additionalProperties: false
securitySchemes:
Bearer:
type: http
description: Please enter a valid token. Tokens can requested at https://voxscriptbillingportal.azurewebsites.net/
scheme: Bearer
bearerFormat: JWT
security:
- Bearer: [ ]
Discover other plugins from the search category
Plugsugar
Enable ChatGPT to search the web and answer relevant questions.
0 Comments

getit.ai plugin search
Search for new plugins and capabilities to use
0 Comments

OpenIndex.ai
Search through documents and websites indexed on OpenIndex.ai
0 Comments

OneLook Thesaurus
Plugin for searching for words by describing their meaning, sound, or spelling.
0 Comments

CensysGPT
Plugin for writing Censys Search queries.
0 Comments

KeyMate.AI Search
Search the web by using a Custom Search Engine with KeyMate.AI Search, your AI-powered web search engine.
1 Comments
Yelp Business Search
Discover great local businesses around you.
0 Comments

Ai Tool Hunt
Explore the ideal AI solutions for all use cases, drawn from the most comprehensive global database of AI tools.
0 Comments

Tagvenue
Search for event venues and spaces in Australia, Canada, Ireland, Singapore, the UK, and the USA.
0 Comments

Metaphor
Access the internet's highest quality content. Recommended by people, powered by neural search.
0 Comments

Substack IQ
Explore Substack! Provide a link, chat with articles, find new authors, search all of Substack, & more.
0 Comments

Mantium
Fetches user-created applications from Mantium and retrieves relevant info based on user queries.
0 Comments

Jini
Get factual, knowledge-base and real-time information. Search news, images, videos, music, apps, pages and facts.
0 Comments

PlugFinder
PlugFinder is your personal assistant for discovering AI tools.
0 Comments
TotalQuery Search
Go beyond google search: harness the combined power of 70+ search engines for ultimate web discovery.
0 Comments
UK Politics
Search through UK political documents such as speeches, press releases, voting records, and candidates' profiles.
0 Comments

MixerBox WebSearchG
Search and summarize the web with our customized search engine powered by Google Search API!
0 Comments

Web Requests
Goodbye Knowledge Cutoff, Hello World! This is your AI assistant's web browser. Just enter a URL. Google, Wiki, GitHub.
0 Comments

Plugin.so
Companies are exposing their APIs to be consumed by AI applications such as ChatGPT and libraries Langchain. Plugin.so is scanning the top 1M+ domains and allows you to track any company launching a plugin. Get launch updates via Email or Twitter.
0 Comments

Pluginpedia
Recommend plugins in the store based on your question, and introduce their usage.
0 Comments

Scholarly
Scholarly is an AI-powered search engine for exploring scientific literature.
0 Comments

Social Search
The Social Search provides access to tweets, users, followers, images, media and more.
0 Comments
PuginAI
Recommend extensions based on prompt from user.
0 Comments

OpenTools AI
Find the right AI tools for your needs from the largest collection on the web.
0 Comments

What's trending?
Explore trending searches, keywords, & hashtags by topic across YouTube, Instagram, Amazon, and Google.
0 Comments

Chat Tool Finder
Find the tool in here that can help you. Search by name, category or description.
0 Comments

Clay
Ask questions and search across your network and contacts — Linkedin, Facebook, email, and iMessage.
0 Comments

People Search
Search Clay's public people graph by keyword & industry. Build lists & recruit faster than Linkedin.
0 Comments

OhMyPlug
Search and discover extensions with OhMyPlug! It guides you through the best addons in the store and explains them ðð§©ð¡.
0 Comments

BrowserPilot
Analyse and understand web pages and search for more results.
0 Comments

Google Trends Plugin
Fetch search interest data for keywords, locations, and timeframes. Get realtime search trends, and top charts.
0 Comments