curl -X POST "https://api.extruct.ai/v1/tables" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "Enterprise Deal Intelligence",
"kind": "company",
"column_configs": [
{
"kind": "input",
"name": "Company",
"key": "input"
},
{
"kind": "agent",
"name": "Tech Stack",
"key": "tech_stack",
"value": {
"agent_type": "research_pro",
"prompt": "Identify the key technologies in this company tech stack, focusing on CRM, marketing automation, and data platforms.",
"output_format": "json",
"output_schema": {
"type": "object",
"properties": {
"crm": { "type": "string" },
"marketing": { "type": "array", "items": { "type": "string" } },
"data_platforms": { "type": "array", "items": { "type": "string" } }
}
}
}
},
{
"kind": "agent",
"name": "Decision Makers",
"key": "decision_makers",
"value": {
"agent_type": "research_pro",
"prompt": "Identify the key decision makers for purchasing enterprise software at this company. Include their name, title, and LinkedIn profile URL if available.",
"output_format": "json",
"output_schema": {
"type": "object",
"properties": {
"people": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": { "type": "string" },
"title": { "type": "string" },
"linkedin_url": { "type": "string" },
"department": { "type": "string" }
}
}
}
},
"required": ["people"]
}
}
},
{
"kind": "agent",
"name": "Recent Initiatives",
"key": "initiatives",
"value": {
"agent_type": "research_pro",
"prompt": "Identify 2-3 recent business initiatives, digital transformation efforts, or growth strategies this company has announced in the past 12 months.",
"output_format": "text"
}
}
]
}'