User onboarding
Auto-populate from any public URL
Let users paste their website URL during signup. Extract company info, products, and tone automatically so your onboarding form fills itself.
Extract structured company data from any public URL
import { BlueFieldsClient } from '@bluefields/sdk';
const bf = new BlueFieldsClient({ apiKey: process.env.BF_KEY });
const company = await bf.extract(companyUrl, {
schema: {
name: 'string',
tagline: 'string',
industry: 'string',
founded: 'number | null',
},
});
// company is typed to your schema — ready to prefill your formWhat you need to get started
A Bluefield API keyThe TypeScript SDK or curlA free account