get_latest_signed_feeds
Retrieve current oracle price feeds for currencies and instruments from Derive.xyz market data. Filter by currency or expiry to access real-time financial information.
Instructions
Get current oracle price feeds
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| currency | No | Currency filter (defaults to all) | |
| expiry | No | Expiry filter (0 for spot/perp only, defaults to all) |
Implementation Reference
- src/client.ts:145-147 (handler)The handler implementation for 'get_latest_signed_feeds' which calls the API.
getLatestSignedFeeds(params: GetLatestSignedFeedsParams): Promise<unknown> { return this.post('public/get_latest_signed_feeds', params); } - src/types.ts:66-68 (schema)The type definition for 'GetLatestSignedFeedsParams'.
export interface GetLatestSignedFeedsParams { currency?: string; expiry?: number; - src/tools.ts:153-163 (registration)Tool registration definition for 'get_latest_signed_feeds'.
{ name: 'get_latest_signed_feeds', description: 'Get current oracle price feeds', inputSchema: { type: 'object', properties: { currency: { type: 'string', description: 'Currency filter (defaults to all)' }, expiry: { type: 'integer', description: 'Expiry filter (0 for spot/perp only, defaults to all)' }, }, }, },