
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
linkup-sdk
Advanced tools
A JS/TS SDK for the Linkup API, allowing easy integration with Linkup's services.
Simply install the Linkup JS SDK using npm or any other package manager:
npm i linkup-sdk
Find the complete documentation here.
Sign up on Linkup to get your API key.
Pass the Linkup API key to the Linkup Client when creating it.
import { LinkupClient } from 'linkup-js-sdk';
const client = new LinkupClient({
apiKey: '<YOUR API KEY>',
});
All search queries can be used with two very different modes:
standard depth, the search will be straightforward and fast, suited for relatively simple
queries (e.g. "What's the weather in Paris today?")deep depth, the search will use an agentic workflow, which makes it in general slower,
but it will be able to solve more complex queries (e.g. "What is the company profile of LangChain
accross the last few years, and how does it compare to its concurrents?")import { LinkupClient } from 'linkup-js-sdk';
const client = new LinkupClient({
apiKey: '<YOUR API KEY>',
});
const askLinkup = () => client.search({
query: 'Can you tell me which women were awared the Physics Nobel Prize',
depth: 'standard',
outputType: 'sourcedAnswer',
});
askLinkup()
.then(console.log);
.catch(console.error);
You can use the fetch endpoint to retrieve the content of a given URL in clean markdown format.
Use renderJs to execute the JavaScript code of the page before returning the content.
Use includeRawHtml to get the raw HTML of the page.
Use extractImages to get an extracted list of images from the page.
import { LinkupClient } from 'linkup-js-sdk';
const client = new LinkupClient({
apiKey: '<YOUR API KEY>',
});
const fetchLinkup = async () => client.fetch({
url: 'https://docs.linkup.so',
renderJs: true,
});
fetchLinkup()
.then(console.log)
.catch(console.error);
FAQs
A Javascript Client SDK for the Linkup API
The npm package linkup-sdk receives a total of 18,976 weekly downloads. As such, linkup-sdk popularity was classified as popular.
We found that linkup-sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.