UNPKG

@sudowealth/schwab-api

Version:

TypeScript client for Charles Schwab API with OAuth support, market data, trading functionality, and complete type safety

13 lines (12 loc) 489 B
import { MARKET_DATA } from '../../constants'; import { ErrorResponseSchema } from '../../errors'; import { GetMoversPathParams, GetMoversQueryParams, GetMoversResponse, } from './schema'; export const getMoversMeta = { method: 'GET', path: MARKET_DATA.MOVERS.GET_MOVERS, pathSchema: GetMoversPathParams, querySchema: GetMoversQueryParams, responseSchema: GetMoversResponse, errorSchema: ErrorResponseSchema, description: 'Get Movers for a specific index.', };