https://chatgpt-plugin.paths.finance/.well-known/ai-plugin.json
{
"schema_version": "v1",
"name_for_human": "meta path for crypto query",
"name_for_model": "meta_path",
"description_for_human": "querying coins info and nfts.",
"description_for_model": "querying coins info and nfts.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://chatgpt-plugin.paths.finance/openapi.yaml",
"is_user_authenticated": false
},
"logo_url": "https://chatgpt-plugin.paths.finance/logo.png",
"contact_email": "liu941125@gmail.com",
"legal_info_url": "https://paths.finance/us/legal.html"
}
https://chatgpt-plugin.paths.finance/openapi.yaml
openapi: 3.0.1
info:
title: meta path Plugin
description: A plugin that allows the user to query coins swap data and nfts information by meta path using ChatGPT.".
version: 'v1'
servers:
- url: https://chatgpt-plugin.paths.finance/
paths:
/api/getBaseInfo:
get:
operationId: get_coin_lists
summary: Get Base Info
description: Get base information on supported chains
responses:
'200':
description: Returns a list of supported chains
content:
application/json:
schema:
$ref: '#/components/schemas/SupportedChainsResponse'
'500':
description: Error fetching data from API
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
/api/v2/meta/recentlyListed:
get:
operationId: get_recent_nfts
summary: Get Recently Listed NFTs
description: Get a list of recently listed NFTs
responses:
'200':
description: Returns a list of recently listed NFTs
content:
application/json:
schema:
$ref: '#/components/schemas/RecentlyListedNFTsResponse'
'500':
description: Error fetching data from API
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
/api/v2/meta/topCollections:
get:
operationId: get_top_nfts
summary: Get Top Collections
description: Get a list of top NFT collections
responses:
'200':
description: Returns a list of top NFT collections
content:
application/json:
schema:
$ref: '#/components/schemas/TopCollectionsResponse'
'500':
description: Error fetching data from API
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
/api/v2/meta/getUserAssets:
get:
operationId: get_nfts_by_user
summary: Get User Assets
description: Get a list of NFT assets owned by a user
parameters:
- in: query
name: owner
description: The address of the user to query
required: true
schema:
type: string
responses:
'200':
description: Returns a list of NFT assets owned by the user
content:
application/json:
schema:
$ref: '#/components/schemas/UserAssetsResponse'
'500':
description: Error fetching data from API
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
/api/exchangeRecord/getTransDetail:
get:
operationId: get_trans_detail
summary: Get Transaction Details
description: Get details for a specific transaction
parameters:
- in: query
name: hash
description: The hash of the transaction to query
required: true
schema:
type: string
responses:
'200':
description: Returns details for the transaction
content:
application/json:
schema:
$ref: '#/components/schemas/TransactionDetailsResponse'
'500':
description: Error fetching data from API
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
/api/commonSwap:
get:
operationId: get_quote_between_two_tokens
summary: Swap Tokens
description: Swap tokens on a specific DEX
parameters:
- in: query
name: fromTokenName
description: The name of the token to swap from
required: true
schema:
type: string
- in: query
name: toTokenName
description: The address of the token to swap to
required: true
schema:
type: string
- in: query
name: fromTokenAmount
description: The amount of the token to swap from
required: true
schema:
type: string
- in: query
name: wallet_address
description: The address of the receiver
required: true
schema:
type: string
- in: query
name: fromTokenChain
description: The chain of the token to swap from
required: true
schema:
type: string
- in: query
name: toTokenChain
description: The chain of the token to swap to
required: true
schema:
type: string
responses:
'200':
description: Returns details for the swap transaction
content:
application/json:
schema:
$ref: '#/components/schemas/SwapResponse'
'500':
description: Error fetching data from API
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
components:
schemas:
SupportedChainsResponse:
type: object
properties:
chains:
type: array
items:
type: string
RecentlyListedNFTsResponse:
type: array
items:
type: object
properties:
id:
type: string
name:
type: string
contractAddress:
type: string
floorPrice:
type: string
imageUrl:
type: string
vol:
type: string
volPercent:
type: string
symbol:
type: string
description:
type: string
bannerUrl:
type: string
nftImage:
type: string
ind:
type: number
TopCollectionsResponse:
type: array
items:
type: object
properties:
id:
type: string
owners:
type: number
name:
type: string
contractAddress:
type: string
floorPrice:
type: string
imageUrl:
type: string
vol:
type: string
volPercent:
type: string
symbol:
type: string
bannerUrl:
type: string
ind:
type: number
supply:
type: number
UserAssetsResponse:
type: array
items:
type: object
properties:
name:
type: string
image:
type: string
description:
type: string
owner:
type: string
price:
type: number
currency:
type: string
TransactionDetailsResponse:
type: object
properties:
txHash:
type: string
fromTokenAddress:
type: string
fromTokenChain:
type: string
fromTokenSymbol:
type: number
fromTokenUrl:
type: number
toTokenAddress:
type: string
toTokenChain:
type: string
toTokenSymbol:
type: number
toTokenUrl:
type: number
fromAmount:
type: number
toAmount:
type: string
finalStatus:
type: string
createTime:
type: string
estimatedTime:
type: string
dexName:
type: string
refundAddress:
type: string
receiveAddress:
type: string
logoUrl:
type: string
status:
type: array
items:
type: object
properties:
chain:
type: string
txHash:
type: string
url:
type: string
status:
type: string
nfts:
type: object
properties:
id:
type: string
name:
type: string
contractAddress:
type: string
floorPrice:
type: string
imageUrl:
type: string
vol:
type: string
volPercent:
type: string
symbol:
type: string
description:
type: string
bannerUrl:
type: string
nftImage:
type: string
ind:
type: number
SwapResponse:
type: object
properties:
from:
type: string
to:
type: string
value:
type: string
gas:
type: string
gasPrice:
type: string
data:
type: string
approveAddress:
type: string
transferData:
type: object
properties:
fromAddress:
type: string
fromTokenAddress:
type: string
fromTokenAmount:
type: string
fromChainId:
type: number
toChainId:
type: number
timestamp:
type: number
ErrorResponse:
type: object
properties:
message:
type: string
Discover other plugins from the crypto category

Crossmint
Plugin for minting NFTs.
0 Comments

NFT News Roundup
Get Today's NFT News Headlines As A Clickable Link Roundup!
0 Comments

DAIZY
Deep insights on ETFs, stocks, cryptos. Institutional-grade data: performance, risk, sustainability, research.
0 Comments

CoinCap
Get cryptocurrency information from CoinCap.
0 Comments

CCData.io
Access the latest crypto prices and news aggregated by CCData.io (formerly CryptoCompare.com).
0 Comments

Defillama
Retrieve data on DeFi protocols and blockchains.
0 Comments

sic
Your gateway to crypto. Explore prices, accounts, and transactions on blockchains, starting with Ethereum.
0 Comments

CheckTheChain
Look for anything on the blockchain and get instant analysis.
0 Comments

Bitcoin Sentiment
Track the current price of Bitcoin and the market sentiment based on the last 20 news media mentions!
0 Comments

P/E For NFTs
Get the price to earnings ratio for any NFT collection!
0 Comments

Crypto Price Checker
A Crypto Prices app that takes a pair of crypto or fiat tickers and returns the current price of the pair.
0 Comments
.png%3Falt%3Dmedia%26token%3Ddb99af1e-5510-474a-bec8-3231c93b74eb)
Crypto ERC20 Scout
Browse ERC20 tokens on EVM blockchains. Includes address resolution, symbol/tag search, explorer links, and pricing.
0 Comments

Smarter Contracts
Analyze smart contracts and tokens on Ethereum.
0 Comments

Mobula
Fetching real-time data for all crypto & blockchain metrics.
0 Comments

Crypto Market News
It's your go-to solution for real-time cryptocurrency price updates, market insights, and the latest news.
0 Comments

NFTs
Get the important details of any NFT collection and ask for insights based on that data!
0 Comments

Crypto Pulse
From News to Profit: Decode Crypto's Market Impact with Ease. Instantly, analyse latest crypto news.
0 Comments

SignalPlus
Live data on crypto, NFTs, DeFi. Spot/derivatives. A must for traders.
0 Comments

MintbaseSearch
Find any NFT data on the NEAR Protocol.
0 Comments

Toolblox
Text to smart-contract. Describe a process to generate a smart-contract and deploy to any blockchain.
0 Comments

Telescope Labs
Data retrieval, analysis and visualizations related to web3 games who are onboarded as a blockchain game.
0 Comments
TokenInsights
Get realtime crypto price, BTC, ETH, BNB, and the latest insights.The latest coin news and airdrop opportunities.
0 Comments
CryptoMation
Crypto transactions, addresses, balances, conversions for any blockchain (Ethereum, Binance, Near, Tron, etc.)
0 Comments

NFT Guru
Discover current prices of NFTs across major platforms and keep track of the rapidly changing marketplace with real-time
0 Comments

Alchemy
Request real-time blockchain data for chains like Ethereum, Polygon, Arbitrum and Optimism through natural language.
0 Comments
Binance coin API Plugin
Plugin for retrieving cryptocurrency information from the Binance coin API.
0 Comments