
Security News
White House Authorizes Private Companies to Conduct Offensive Cyber Operations
A new federal program will let vetted U.S. cybersecurity firms help investigate and disrupt foreign cybercrime groups under government direction.
@ramaris/sdk
Advanced tools
TypeScript SDK for the [Ramaris](https://www.ramaris.app) REST API. Query on-chain wallet analytics, trading strategies, and performance data on Base.
TypeScript SDK for the Ramaris REST API. Query on-chain wallet analytics, trading strategies, and performance data on Base.
npm install @ramaris/sdk
import { RamarisClient } from '@ramaris/sdk';
const client = new RamarisClient({
apiKey: 'rms_your_api_key',
});
// List top strategies
const strategies = await client.strategies.list({ pageSize: 10 });
console.log(strategies.data);
// Get strategy details
const strategy = await client.strategies.get('abc123def');
console.log(strategy.name, strategy.roiPercent);
Free tier gets 1 API key with strategies:read scope (100 req/hr). Upgrade to PRO for wallet data and higher limits.
client.strategies.list({ page, pageSize }) // List strategies
client.strategies.get(shareId) // Strategy details
client.strategies.watchlist({ page, pageSize }) // Your followed strategies
client.wallets.list({ page, pageSize }) // List wallets
client.wallets.get(id) // Wallet details
client.me.profile() // Your profile
client.me.subscription() // Your subscription
client.health() // API health check
| Tier | Requests/Hour | Scopes |
|---|---|---|
| FREE | 100 | strategies:read |
| PRO | 1,000 | strategies:read, wallets:read |
| ULTRA | 10,000 | strategies:read, wallets:read |
| ENTERPRISE | 100,000 | strategies:read, wallets:read |
Rate limit info is available after any request:
await client.strategies.list();
console.log(client.rateLimit);
// { limit: 100, remaining: 99, reset: 1707667200 }
import { RamarisError, RateLimitError } from '@ramaris/sdk';
try {
await client.wallets.list();
} catch (err) {
if (err instanceof RateLimitError) {
console.log(`Rate limited. Retry after ${err.retryAfter}s`);
} else if (err instanceof RamarisError) {
console.log(err.code, err.message); // e.g. "INSUFFICIENT_SCOPE"
}
}
const client = new RamarisClient({
apiKey: 'rms_...', // Required
baseUrl: 'https://...', // Optional, defaults to https://www.ramaris.app/api/v1
});
MIT
FAQs
TypeScript SDK for the [Ramaris](https://www.ramaris.app) REST API. Query on-chain wallet analytics, trading strategies, and performance data on Base.
The npm package @ramaris/sdk receives a total of 0 weekly downloads. As such, @ramaris/sdk popularity was classified as not popular.
We found that @ramaris/sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
A new federal program will let vetted U.S. cybersecurity firms help investigate and disrupt foreign cybercrime groups under government direction.

Research
/Security News
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.