skillfed

linkup-sdk

A Python Client SDK for the Linkup API

linkup-sdk v0.20.0 314.2K downloads/30d#7,704 on PyPI46
Permissive license MIT Active released

What it is and what it does

Linkup SDK is a Python client that wraps the Linkup API, a web search and content retrieval service. It lets you perform web searches at different complexity levels (fast, standard, deep), fetch and parse web page content into markdown, create long-running research tasks, and batch multiple operations together. The library supports both blocking and async/await patterns, making it suitable for both simple scripts and production applications that need to avoid blocking I/O.

The SDK handles authentication via API key (passed directly, read from environment, or set via dotenv), manages HTTP requests through httpx, and validates responses using pydantic. It also includes optional support for the x402 payment protocol to pay for requests on-chain via EVM-compatible networks instead of API keys. All main functions have async counterparts prefixed with `async_`, enabling concurrent API calls without blocking.

Use it for:

  • Build a web research agent that performs multi-depth searches and fetches relevant pages to synthesize answers with sources.
  • Batch-process a list of URLs to extract and clean their content in markdown format for downstream NLP or indexing.
  • Create a long-running research task that investigates a complex query asynchronously and retrieve results later.
  • Integrate web search capabilities into a chatbot or knowledge system that needs current information from the web.
  • Perform concurrent searches across multiple queries without blocking, using async_search in a production service.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

A Python client library for the Linkup API that provides web search, page fetching, research task management, and batch job submission with support for both synchronous and asynchronous calls.

Yes. The package is actively maintained, has low install friction (two lightweight dependencies), carries no known vulnerabilities, and offers a clean async-first API for a useful service. MIT licensing poses no restrictions. Install it if you need programmatic web search, content fetching, or research task automation; skip it if you don't need external web data.

Install

linkup-sdk on PyPI

pip

pip install linkup-sdk

uv

uv add linkup-sdk

poetry

poetry add linkup-sdk

Installing linkup-sdk

Before you install

Low friction: pure Python wheel with only httpx and pydantic as runtime dependencies. Active maintenance with a release 9 days old and recent commits.

License in practice

MIT license permits unrestricted use, modification, and distribution in both open and closed projects with minimal restrictions.

Quickstart

pip install linkup-sdk

import linkup

client = linkup.Client(api_key="your-key")
response = await client.async_search(
    query="example query",
    depth="standard",
    output_type="sourcedAnswer"
)
print(response.model_dump())

Requires Python 3.10 or later. API key from Linkup required for authentication.

Verify before relying

  • Whether the x402 payment protocol extras require additional system dependencies beyond what pip installs
  • Rate limiting or quota behavior when making concurrent async calls
  • Whether the 'fast' search depth mode is production-ready or remains experimental

Package facts

License MIT (permissive)
Python support supports the current Python release (<4.0,>=3.10)
Install friction low — pure-Python wheel
Runtime dependencies 2 — httpx, pydantic
Maintenance actively maintained — 9 days since the last release
Last repo commit
First released
Downloads 314,171/month — #7,704 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: linkup_sdk-0.20.0-py3-none-any.whl

Keywords: api, client, linkup, sdk, search

Intended Audience :: DevelopersLicense :: OSI Approved :: MIT LicenseOperating System :: OS IndependentTopic :: Software Development :: Libraries :: Python Modules

Tags

web search api clientlinkup python sdkasync http client libraryapi wrapper pythonweb scraping and fetchresearch task automationbatch api requests
web-search-apiasync-http-clientcontent-extraction

More Python Modules packages