LogoParse4ai Docs
API Reference

SDK Documentation

Installation

Python

pip install document-parser-sdk

Node.js

npm install @document-parser/sdk

Quick Start

Python Example

from document_parser import Client

client = Client(api_key='your_api_key')
result = client.parse('document.pdf')
print(result.text)

Node.js Example

import { DocumentParser } from '@document-parser/sdk';

const client = new DocumentParser({ apiKey: 'your_api_key' });
const result = await client.parse('document.pdf');
console.log(result.text);

API Reference

Please refer to the main API documentation for detailed endpoint information.