Skip to main contentSkip to FAQSkip to contact
Reference· 3 minUpdated 4d ago

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
TSrfq.create(params)
Full reference
Pyrfq.create(**params)
Full reference
Namespacerfqrfq
ReturnsRFQRFQ
Sincev2.0v2.0
StatusStableStable
Source docTypeScript SDKPython SDK
DeprecationActiveActive

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; bare T in Python when the client is synchronous, or Awaitable[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, or Deprecated. A deprecated entry always lists its replacement.
  • Source doc - Deep-link to the method's full signature, parameters, and code example.

Related topics