Compare SDK Methods#
Pick 2-4 SDK methods from TypeScript and Python to compare side-by-side. Useful when you're choosing between similar methods (rfq.acceptBest vs quotes.accept) or cross-referencing language parity.
The picker is driven by the same index that powers All SDK Methods. Updates land here automatically when a new method is authored on its home page.
Comparing2 of 4 methodsMin 2 · max 4
TSrfq.create(params)Pyrfq.create(**params)
| Property | TS Full referencerfq.create(params) | Py Full referencerfq.create(**params) |
|---|---|---|
| Namespace | rfq | rfq |
| Returns | RFQ | RFQ |
| Since | v2.0 | v2.0 |
| Status | Stable | Stable |
| Source doc | TypeScript SDK | Python SDK |
| Deprecation | Active | Active |
Pick up to 4 methods to compare side-by-side. Scroll horizontally when the matrix overflows the viewport.
How to read the matrix#
- Namespace - The top-level group the method belongs to. Methods sharing a namespace usually cluster on the same home page section.
- Returns - The declared return type.
Promise<T>in TypeScript; bareTin Python when the client is synchronous, orAwaitable[T]on the async client. - Since - The version in which the method was introduced. Use this to gate feature access in your integration.
- Status -
Stable,Beta, orDeprecated. A deprecated entry always lists its replacement. - Source doc - Deep-link to the method's full signature, parameters, and code example.