Skip to main content

Quickstart Guide

This guide will help you make your first request with Nimble in just a few minutes.

1. Get Your API Key

First, obtain your API key from the Nimble dashboard.

2. Make Your First Request

Node.js

import { NimbleClient } from '@nimbleway/sdk';

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

const response = await client.webApi.get('https://example.com');
console.log(response.data);

Python

from nimble_sdk import NimbleClient

client = NimbleClient(api_key='your-api-key')
response = client.web_api.get('https://example.com')
print(response.data)

Next Steps