New:Socket for Asana Is Now Available.Learn more
Sign In

@snapvisor/api-client

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@snapvisor/api-client

Snapvisor API Client library.

latest
Source
npmnpm
Version
0.27.0
Version published
Weekly downloads
27
-15.62%
Maintainers
1
Weekly downloads
 
Created
Source

Argos

The open source visual testing platform for AI-native engineering teams.

Argos API Client

A typed client for the Argos API, built on openapi-fetch.

npm version npm dm npm dt

Installation

npm install @snapvisor/api-client

Usage

Create a client and call any endpoint. Requests and responses are fully typed from the Argos OpenAPI schema:

import { createClient } from "@snapvisor/api-client";

const client = createClient({
  authToken: process.env.ARGOS_TOKEN,
});

const { data, error } = await client.GET("/project");

if (error) {
  throw new Error(error.error);
}

console.log(data);

Keywords

api

FAQs

Package last updated on 24 Jul 2026

Related posts