Public
Like
clay-proxy
Val Town is a collaborative website to build and scale JavaScript apps.
Deploy APIs, crons, & store data – all from the browser, and deployed in milliseconds.
Viewing readonly version of main branch: v65View latest version
Simple API / SDK to enrich data with Clay.
import { clay } from "./sdk.ts";
const result = await clay({
email: "user@example.com",
github_username: "johndoe"
});
console.log(result.linkedin); // LinkedIn URL
console.log(result.tech_stack); // Tech stack
console.log(result.funding); // Funding info
email- Email addressgithub_username- GitHub usernamesource- Data sourcerepo- Repository name
linkedin- LinkedIn URLlinkedin_data- LinkedIn profile datatech_stack- Technology stackfunding- Funding information
curl -X POST https://your-api.com/enrich \ -H "Content-Type: application/json" \ -d '{"email": "user@example.com"}'