
Security News
Meet Socket at Black Hat Europe and BSides London 2025
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.
@coinbase-sample/intx-sdk-ts
Advanced tools
Welcome to the Coinbase International Exchange (INTX) API TypeScript SDK. This TypeScript project was created to allow developers to easily plug into the [Coinbase INTX API](https://docs.cdp.coinbase.com/intx/docs/welcome).
Welcome to the Coinbase International Exchange (INTX) API TypeScript SDK. This TypeScript project was created to allow developers to easily plug into the Coinbase INTX API.
The Intx Typescript SDK sample library is free and open source and released under the Apache License, Version 2.0.
The application and code are only available for demonstration purposes.
Here are a few examples requests:
const portfoliosService = new PortfoliosService(client);
portfoliosService
.listPortfolios()
.then((portfolios) => {
console.log(portfolios);
})
.catch((err) => console.log(err));
const assetService = new AssetsService(client);
assetService
.listAssets()
.then((assets) => {
console.log(assets);
})
.catch((err) => console.log(err));
$10 Market Buy on BTC-USD
client
.createOrder({
portfolio: "somePortfolioId",
clientOrderId: "someClientOrderId",
instrument: "BTC-USD",
side: OrderSide.BUY,
type: OrderType.Market,
size: "0.0001"
})
.then((result) => {
console.log(result);
})
.catch((error) => {
console.error(error.message);
});
npm install
To build the project, run the following command:
npm run build
Note: To avoid potential issues, do not forget to build your project again after making any changes to it.
After building the project, each .ts file will have its .js counterpart generated.
To run a file, use the following command:
node dist/{INSERT-FILENAME}.js
For example, a main.ts file would be run like:
node dist/main.js
[0.1.1] - 2025-MAR-17
FAQs
Welcome to the Coinbase International Exchange (INTX) API TypeScript SDK. This TypeScript project was created to allow developers to easily plug into the [Coinbase INTX API](https://docs.cdp.coinbase.com/intx/docs/welcome).
We found that @coinbase-sample/intx-sdk-ts demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.