
sic
Description
Your gateway to crypto. Explore prices, accounts, and transactions on blockchains, starting with Ethereum.
Details
https://sic.smlxl.ai/.well-known/ai-plugin.json
{
"schema_version": "v1",
"name_for_model": "sic",
"name_for_human": "sic",
"description_for_model": "Your gateway to crypto. Explore prices, accounts, and transactions on blockchains, starting with Ethereum.",
"description_for_human": "Your gateway to crypto. Explore prices, accounts, and transactions on blockchains, starting with Ethereum.",
"auth": {
"type": "none",
"authorization_type": "bearer"
},
"api": {
"type": "openapi",
"url": "https://sic.smlxl.ai/.well-known/openapi.yaml",
"has_user_authentication": false
},
"logo_url": "https://sic.smlxl.ai/.well-known/sic-logo.png",
"contact_email": "sic@smlxl.io",
"legal_info_url": "smlxl.io"
}
https://sic.smlxl.ai/.well-known/openapi.yaml
components:
schemas:
AccountBalanceRequest:
properties:
account:
title: Account
type: string
at:
title: At
type: string
block_number:
format: int64
title: BlockNumber
type: integer
required:
- account
title: AccountBalanceRequest
type: object
AccountBalanceResponse:
properties:
address:
title: Address
type: string
block_number:
format: int64
title: BlockNumber
type: integer
block_time:
title: BlockTime
type: string
chain_id:
format: int64
title: ChainId
type: integer
collectibles:
items:
$ref: '#/components/schemas/AssetBalancePoint'
title: AssetBalances
type: array
tokens:
items:
$ref: '#/components/schemas/AssetBalancePoint'
title: AssetBalances
type: array
total_value_usd:
title: TotalValueUSD
type: string
title: AccountBalanceResponse
type: object
AssetBalancePoint:
properties:
asset:
$ref: '#/components/schemas/ResponseAsset'
title: Asset
type: object
balance:
format: float
title: Balance
type: number
value_usd:
title: valueUSD
type: string
title: AssetBalancePoint
type: object
AssetPricePoint:
properties:
asset:
$ref: '#/components/schemas/ResponseAsset'
title: Asset
type: object
currency:
title: Currency
type: string
price:
format: float
items:
type: number
title: Price
type: array
utc_datetime:
format: date-time
items:
type: string
title: UTCDatetime
type: array
title: AssetPricePoint
type: object
AssetPricingRequest:
properties:
assets:
items:
$ref: '#/components/schemas/RequestAsset'
title: Assets
type: array
at:
title: At
type: string
currency:
title: Currency
type: string
required:
- assets
type: object
AssetPricingRequestHistoricalRange:
properties:
assets:
items:
$ref: '#/components/schemas/RequestAsset'
title: Assets
type: array
currency:
title: Currency
type: string
date_begin:
title: DateBegin
type: string
date_end:
title: DateEnd
type: string
required:
- assets
- date_begin
- date_end
title: AssetPricingRequest
type: object
AssetPricingResponse:
properties:
prices:
items:
$ref: '#/components/schemas/AssetPricePoint'
title: Prices
type: array
unavailable_for_pricing:
items:
$ref: '#/components/schemas/ResponseAsset'
title: UnavailableForPricing
type: array
title: AssetPricingResponse
type: object
ENSRequest:
properties:
address:
title: Address
type: string
block_number:
format: int64
title: BlockNumber
type: integer
block_time:
title: BlockTime
type: string
chain_id:
format: int64
title: ChainId
type: integer
ens_name:
title: ENSName
type: string
title: ENSRequest
type: object
ENSResponse:
properties:
address:
title: Address
type: string
block_number:
format: int64
title: BlockNumber
type: integer
block_time:
title: BlockTime
type: string
chain_id:
format: int64
title: ChainId
type: integer
ens_name:
title: ENSName
type: string
owner:
title: Owner
type: string
title: ENSResponse
type: object
GenericQueryRequest:
properties:
classify_contract_input:
title: ClassifyContractInput
type: string
explore_sql_query_input:
title: ExploreSQLQueryInput
type: string
generic_transaction_query_input:
title: GenericTransactionQueryInput
type: string
title: GenericQueryRequest
type: object
GenericQueryResponse:
properties:
query_output_description:
title: QueryOutputDescription
type: string
query_outputs:
items:
type: object
title: QueryOutputs
type: array
title: GenericQueryResponse
type: object
HTTPValidationError:
properties:
detail:
items:
$ref: '#/components/schemas/ValidationError'
title: Detail
type: array
title: HTTPValidationError
type: object
RequestAsset:
properties:
chain_id:
format: int64
title: ChainId
type: integer
chain_name:
title: ChinaName
type: string
contract_address:
title: ContractAddress
type: string
symbol:
title: Symbol
type: string
token_id:
format: int64
title: TokenId
type: integer
title: RequestAsset
type: object
ResponseAsset:
properties:
chain_name:
title: ChinaName
type: string
contract_address:
title: ContractAddress
type: string
name:
title: Name
type: string
symbol:
title: Symbol
type: string
token_id:
format: int64
title: TokenId
type: integer
title: ResponseAsset
type: object
TransactionTracerRequest:
properties:
chain_id:
format: int64
title: ChainId
type: integer
transaction_hash:
title: TransactionHash
type: string
required:
- transaction_hash
title: TransactionTracerRequest
type: object
TransactionTracerResponse:
properties:
summary:
title: Summary
type: string
trace_items:
items:
type: string
title: TraceItems
type: array
title: TransactionTracerResponse
type: object
securitySchemes:
HTTPBearer:
scheme: bearer
type: http
info:
description: Your gateway to crypto. Explore prices, accounts, and transactions
on blockchains, starting with Ethereum.
title: Your gateway to crypto. Explore prices, accounts, and transactions on blockchains,
starting with Ethereum.
version: 0.0.1
openapi: 3.0.2
paths:
/api/accountBalance:
post:
description: API returns balances and values of top assets for an ETH wallet.
Accounts are referred to by ENS domains or hex addresses. The response includes
an array of top assets with their balances and values.
operationId: query_account_balance_post
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/AccountBalanceRequest'
required: true
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/AccountBalanceResponse'
description: Successful Response
'422':
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
description: Validation Error
security:
- HTTPBearer: []
summary: AccountBalance API
/api/assetPricing:
post:
description: 'API returns current and historical prices for tokens or assets
on Ethereum. Assets are referred to by symbols such as {"symbol": "SHIB"}.
A currency "USD" or a single historical date (MUST BE UTC) can be provided.
The response is an array of assets with their prices, UTC datetimes and currency.'
operationId: query_asset_pricing_post
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/AssetPricingRequest'
required: true
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/AssetPricingResponse'
description: Successful Response
'422':
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
description: Validation Error
security:
- HTTPBearer: []
summary: Asset Pricing API
/api/assetPricingHistoricalRange:
post:
description: 'API returns historical prices between 2 different dates (MUST
BE UTC) for tokens or assets on Ethereum network. Assets are referred to by
symbols such as {"symbol": "SHIB"}. A currency "USD". The response is an array
of assets with their prices, utc datetimes and currency.'
operationId: query_asset_pricing_historical_range_post
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/AssetPricingRequestHistoricalRange'
required: true
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/AssetPricingResponse'
description: Successful Response
'422':
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
description: Validation Error
security:
- HTTPBearer: []
summary: Asset Pricing API for historical range data
/api/generic-query/classifyContract:
post:
description: 'API returns similarity scores between contract and standard interfaces.
Its only argument can be provided as {"classify_contract_input": "0xab..cd"}.
Please ensure that user mentions the argument as a contract address.'
operationId: query_classify_contract_post
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/GenericQueryRequest'
required: true
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/GenericQueryResponse'
description: Successful Response
'422':
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
description: Validation Error
security:
- HTTPBearer: []
summary: classifyContract API
/api/generic-query/genericTransactionQuery:
post:
description: 'API answers questions about blockchain transactions and their
traces. Put the entire user message in request as: {"generic_transaction_query_input":
"<USER MESSAGE>"}.'
operationId: query_generic_transaction_query_post
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/GenericQueryRequest'
required: true
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/GenericQueryResponse'
description: Successful Response
'422':
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
description: Validation Error
security:
- HTTPBearer: []
summary: genericTransactionQuery API
/api/resolveENS:
post:
description: API returns the ENS name associated with an Ethereum address if
an address is passed, or the Ethereum address associated with an ENS name
if a name is passed. A block number or a time can be provided. The response
includes the address, ENS name and the owner of the domain.
operationId: query_resolve_ens_post
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/ENSRequest'
required: true
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/ENSResponse'
description: Successful Response
'422':
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
description: Validation Error
security:
- HTTPBearer: []
summary: ENSResolver API
servers:
- url: https://sic.smlxl.ai
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

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

MetaPath
Query info on cryptos, NFTs, tokens, coins, Defi and Web3.
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