Skip to main content

Official SDKs

Slash offers official SDKs to make integrating with our API easier:

Installation

Python

pip install slash-sdk

Node.js

npm install slash-sdk

Quick Start

Python

from slash_sdk import SlashClient

client = SlashClient(api_key="your-api-key")

# Get your legal entity
legal_entity = client.legal_entity.get()

Node.js

import { SlashClient } from 'slash-sdk';

const client = new SlashClient({ apiKey: 'your-api-key' });

// Get your legal entity
const legalEntity = await client.legalEntity.get();