@meshqu/client, that wraps the same REST endpoints. It is offered as early access only.
The client is a convenience wrapper around the REST API. It handles:
- Authentication header injection.
- Tenant header injection.
- Typed request and response objects.
- Error mapping to exception classes.
- Timeout and retry options.
When to use the client vs. the REST API
The REST API is the right choice for any production integration, and the only choice from a language other than TypeScript or from infrastructure tooling (CI pipelines, shell scripts, etc.). The TypeScript client can remove boilerplate inside a Node.js or TypeScript codebase during early access — but treat its surface as provisional and pin a known-good version, since it is not published to npm and may change without notice.Other languages
There is no official SDK for other languages. Use the REST API directly — for example withhttpx or requests in Python. See the API Reference for endpoint details.
If you need a purpose-built SDK for a specific language, contact contact@meshqu.com.