Using the Connectifi Demo Resources
Connectifi hosts a sandbox environment with dev tools and a number of demo applications that can be used for development, testing, and prototyping.
Sandbox
The Connectifi Sandbox offers a range of tools for testing the Web Agent SDK using FDC3 APIs including broadcast, channels, and intents.
Visit the Sandbox at https://apps.connectifi-interop.com/sandbox (opens in a new tab)
Demos Directory
Connectifi hosts an open demo directory that apps can connect to and who's apps can federated into other directories. Featured apps include:
Adaptable Grid
This financial grid from the team at Adaptable Tools (opens in a new tab) supports intents discovery for any instruments in the grid plus the SendToWatchlist
to add instruments to the grid view fdc3.instrument
, fdc3.instrumentList
, and fdc3.portfolio
context data.
See it live at https://apps.connectifi-interop.com/adaptableGrid (opens in a new tab)
ChartIQ
State of the art financial charting from the folks at S&P Global ChartIQ (opens in a new tab). This app supports the ViewChart
Intent for fdc3.instrument
context data. Market Data provided by our partners at Polygon.io (opens in a new tab).
See it live at https://apps.connectifi-interop.com/chartIQChart (opens in a new tab)
Ticker News
Get headlines for a ticker with headlines provided by Polygon.io (opens in a new tab). This app supports the ViewNews
Intent for fdc3.instrument
context data with tagged news stories that let's you discover functionality from entities inline with Intents.
See it live at https://apps.connectifi-interop.com/tickerNews (opens in a new tab)
TradingView Chart
Financial charting by TradingView (opens in a new tab). This app supports the ViewChart
Intent for fdc3.instrument
.
See it live at https://apps.connectifi-interop.com/tradingviewChart (opens in a new tab)
Watchlist
A vanilla financial grid featuring market data by Polygon.io (opens in a new tab). This app supports intents discovery for any instruments in the grid plus the SendToWatchlist
to add instruments to the grid view fdc3.instrument
, fdc3.instrumentList
, and fdc3.portfolio
context data.
See it live at https://apps.connectifi-interop.com/watchlist (opens in a new tab)
Data Actions
There are multiple data actions available as Intents leveraging data from Polygon.io capabilities from OpenAI and more!
Connecting to the Sandbox and Demos Directory
The sandbox directory is Open
, so you can connect any app you want to and integrate with the Sandbox tool or interoperate with any of the Apps and Services in the directory.
To connect your app, just add the Agent SDK to your web app and run the following connection code:
Using the CDN:
<script type="module">
import { createAgent } from 'https://platform.connectifi.app/agent/main.bundle.js';
const fdc3 = await createAgent(
`https://platform.connectifi.app`,
`*@sandbox`,
);
</script>
Using NPM:
import { createAgent } from '@connectifi/agent-web';
const fdc3 = await createAgent(
`https://platform.connectifi.app`,
`*@sandbox`,
);
To learn more about using and customizing the Web Agent SDK, checkout our open source Getting Started (opens in a new tab) repo!
Note: As with all Open directories, if your App is publishing sensitive data, we recommend you don't connect it.