Back to Digest

Developer Resources

Build powerful applications with Aiget Dev APIs

API Documentation
Complete API reference for Fetchx, Memox, and Digest APIs
API Keys
Manage your API keys and access tokens
Fetchx API
Web scraping, crawling, and data extraction API
Memox API
Long-term memory and knowledge graph API for AI

Quick Start

# Install the SDK
npm install @aiget/sdk

# Use the API
import { Fetchx } from '@aiget/sdk';

const client = new Fetchx({ apiKey: 'ag_...' });
const result = await client.scrape({
  url: 'https://example.com',
  formats: ['markdown']
});