SDKs

Python SDK

Installation

Install the official SDK package with your preferred package manager.

uv add quercle
View repository

Instantiate a client

Create the client once and reuse it across endpoint calls.

from quercle import QuercleClient

client = QuercleClient(api_key="qk_your_api_key")

Endpoint examples

Switch endpoint tabs to view SDK method examples.

from quercle import QuercleClient

client = QuercleClient(api_key="qk_your_api_key")
response = client.fetch("https://example.com", "Summarize the main points")
print(response.result)