
Substack IQ
Description
Explore Substack! Provide a link, chat with articles, find new authors, search all of Substack, & more.
Details
https://api.substackiq.com/.well-known/ai-plugin.json
{
"schema_version": "v1",
"name_for_human": "Substack IQ",
"name_for_model": "Substack_IQ",
"description_for_human": "Explore Substack! Provide a link, chat with articles, find new authors, search all of Substack, & more.",
"description_for_model": "Explore Substack! Provide a link, chat with articles, find new authors, search all of Substack, & more. Simply provide ChatGPT with a link to a substack and then it will read and index the data so you can chat with your substack data. ChatGPT can also search for substack authors if the use simply provides a keyword or a topic they’re interested in. It’s a seamless experience.If ChatGPT can NOT scan an article or URL it will say “Please make sure your link is formatted correctly and make sure its the normal website URL not “open.substack.com” url” this will help users by preventing them from adding an incorrectly formatted URL and give them context for troubleshooting. If ChatGPT can NOT find old articles it will say “The substack you want scanned is too old. Please try a more recent post or use this prompt “Try again and scan this substack for the oldest data” When ChatGPT has successfully found an article via a link or natural search it will say “I’ve successfully scanned this article what would you like to do next?” You can use this for all free substack posts and use it to redo research in addition to scanning all categories like websites, app, app development, development, code, coding, substack, writing, SEO, ad, advertising, generating, midjourny, GPT, health, working out, work out, calorie, calorie counter, webapp, webapps, deploy, Netlify, B12, B12 vitamins, 60 seconds, AI, professional, engaging, user-friendly, business, create, creating, photo, photographs, photography, amazon, dropshipping, link, links, linking, pdf, xls, excel, word, sheets, web and much much more!",
"auth": {
"type": "oauth",
"client_url": "https://auth.substackiq.com",
"scope": "app:read,app:write",
"authorization_url": "https://auth.substackiq.com/api/authorize",
"authorization_content_type": "application/json",
"verification_tokens": {
"openai": "32e0850eeaff4969a2a2623c4572d730"
}
},
"api": {
"type": "openapi",
"url": "https://api.substackiq.com/openapi.yaml",
"is_user_authenticated": false
},
"logo_url": "https://api.substackiq.com/logo.png",
"contact_email": "legal@substackiq.com",
"legal_info_url": "https://www.substackiq.com/legal"
}
https://api.substackiq.com/openapi.yaml
openapi: 3.0.0
info:
title: Substack IQ
description: Explore Substack! Provide a link, chat with articles, find new authors, search all of Substack, and more.
version: 'v1'
servers:
- url: https://api.substackiq.com
paths:
/feed/link:
post:
summary: Substack Feed Processing
description: Accepts a Substack link, validates it, verifies that a feed exists, fetches the feed, parses and cleans up the feed, then stores the feed as objects.
operationId: submitLink
security:
- BearerAuth: ['app:read']
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
link:
type: string
example: "example.substack.com"
responses:
200:
description: Success
content:
application/json:
schema:
type: object
properties:
message:
type: string
example: "Feed processed"
feedId:
type: string
example: "123e4567-e89b-12d3-a456-426614174000"
400:
description: Invalid link
401:
description: Missing access token
403:
description: Invalid access token or insufficient permissions
500:
description: Internal server error
/feed/{id}/summarize:
get:
summary: Substack Feed Summary
description: Returns a list of metadata of the feed content based on the feed ID.
operationId: summarizeSubstack
security:
- BearerAuth: ['app:read']
parameters:
- name: id
in: path
description: The ID of the feed to summarize.
required: true
schema:
type: string
responses:
200:
description: Success
content:
application/json:
schema:
type: array
items:
type: object
properties:
id:
type: string
metadata:
type: object
properties:
title:
type: string
description:
type: string
publicationDate:
type: string
creator:
type: string
link:
type: string
400:
description: Invalid link
401:
description: Missing access token
403:
description: Invalid access token or insufficient permissions
404:
description: Feed not found
500:
description: Internal server error
/query:
post:
summary: Query Endpoint
description: Accepts a text query and a feed ID, vectorizes the query, and queries the Pinecone database to return relevant results.
operationId: submitQuery
security:
- BearerAuth: ['app:read']
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
query:
type: string
example: "OpenAI GPT-3"
feedId:
type: string
example: "123e4567-e89b-12d3-a456-426614174000"
responses:
200:
description: Success
content:
application/json:
schema:
type: array
items:
type: object
properties:
id:
type: string
content:
type: string
score:
type: number
400:
description: Invalid request
401:
description: Missing access token
403:
description: Invalid access token or insufficient permissions
500:
description: Internal server error
/article:
get:
summary: Get Article
description: Returns a specific article from a feed given its link.
operationId: getArticle
security:
- BearerAuth: ['app:read']
parameters:
- name: link
in: query
description: The link of the article.
required: true
schema:
type: string
responses:
200:
description: Success
content:
application/json:
schema:
type: object
properties:
_id:
type: string
feedId:
type: string
title:
type: string
description:
type: string
publicationDate:
type: string
creator:
type: string
link:
type: string
content:
type: string
400:
description: Invalid link
401:
description: Missing access token
403:
description: Invalid access token or insufficient permissions
404:
description: Article or Feed not found
500:
description: Internal server error
/search:
get:
summary: Search Feeds
description: Accepts a search query and returns matching feed results.
operationId: searchFeed
security:
- BearerAuth: ['app:write']
parameters:
- name: query
in: query
description: The text to search for in feeds.
required: true
schema:
type: string
responses:
200:
description: Success
content:
application/json:
schema:
type: array
items:
type: object
properties:
_id:
type: string
feedLink:
type: string
vectors:
type: array
items:
type: object
properties:
id:
type: string
metadata:
type: object
properties:
title:
type: string
description:
type: string
publicationDate:
type: string
creator:
type: string
link:
type: string
content:
type: string
401:
description: Missing access token
403:
description: Invalid access token or insufficient permissions
500:
description: Internal server error
components:
securitySchemes:
BearerAuth:
type: http
scheme: bearer
schemas:
Error:
type: object
properties:
error:
type: string
example: "Invalid access token"
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

VoxScript
Enables searching of YouTube transcripts, financial data sources Google Search results, and more!
0 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

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