
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
tuix-marketplace-api
Advanced tools
Api Client for tuix marketplace api project
npm i tuix-marketplace-api
If you need to use the stagging api client, then use the command
npm i tuix-marketplace-api@staging
Check the available versions in the following link: https://www.npmjs.com/package/tuix-marketplace-api?activeTab=versions
Tested on
node 18
npm 9.6.7
Make an example request :
import { Configuration, ResponseError, TuixmarketplaceClientApi } from 'tuix-marketplace-api';
const configuration = new Configuration({
basePath: "https://staging-api-marketplace.tuix.ch",
apiKey: "Bearer <JWT>"
});
const timesheetAPIClient = new TuixmarketplaceClientApi(configuration);
(async () => {
try {
const companies = await timesheetAPIClient.companiesGet()
console.log({ companies });
} catch (error) {
if(error instanceof ResponseError){
console.log(error.response.status, error.response.statusText);
const data = await error.response.json()
console.log(data);
}
}
})()
FAQs
This package facilitates the client request to tuix marketplace api
We found that tuix-marketplace-api demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.