API Documentation
Integrate Intemso into your applications with our REST API.
Authentication
OAuth 2.0 and API key authentication for secure access.
REST API
RESTful endpoints for gigs, users, proposals, and payments.
Webhooks
Real-time event notifications for your integrations.
SDKs
Official libraries for Node.js, Python, and more.
Quick Start
# Install the SDK
npm install @intemso/sdk
# Initialize
import { IntemsoClient } from '@intemso/sdk';
const client = new IntemsoClient({
apiKey: process.env.INTEMSO_API_KEY,
});
# List gigs
const gigs = await client.gigs.list({ status: 'open' });
Full API reference coming soon. Contact us for early access.