Create an influencer
Create the persona your workflow will manage and keep its identity in one account-scoped resource.
influencers.createBuild a reliable path from influencer creation to generated content, status polling, and schedule visibility with Inflyu developer capabilities.
A composable workflow
Use focused operations in your own worker, dashboard, or AI agent instead of rebuilding the influencer content lifecycle.
Create the persona your workflow will manage and keep its identity in one account-scoped resource.
influencers.createRequest persona-aware content when your campaign, product, or agent is ready to produce.
influencers.generateCheck progress from your queue or worker and decide when the next workflow step should run.
influencers.posts.statusPull scheduled posts into your dashboard, approvals flow, or agency reporting system.
influencers.schedule.listQuickstart
Create an API key in Settings → Developer, keep it server-side, and call each capability with a Bearer token.
API and MCP access require the Developer Platform to be enabled; create a key in Settings → Developer when it is available.
View developer quickstartRun capabilities through POST /api/v1/run/{capabilityId}
// Illustration: run(capabilityId, body)
const influencer = await run('influencers.create', {
name: 'Maya Chen', username: 'maya_chen', category: 'fashion',
})
const { jobId } = await run('influencers.generate', {
influencerId: influencer.result.id, contentType: 'image', prompt: 'summer lookbook',
})
const completed = await poll(
`GET /api/v1/jobs/${jobId}`,
(job) => job.result?.generationJobId,
)
await run('influencers.posts.status', {
influencerId: influencer.result.id, generationJobId: completed.result.generationJobId,
})
const schedule = await run('influencers.schedule.list', {
influencerId: influencer.result.id,
})Give an agency dashboard, campaign service, or compatible AI agent the primitives it needs to create personas, monitor production, and keep scheduled content visible.
FAQ
You can create an AI influencer, start persona-aware content generation, poll post status, and read the influencer schedule from your own workflow.
Yes. Keep your account-scoped API key on the server, create or select the influencer for each workflow, and call the same capabilities with the relevant resource IDs.
Generation uses the same credit costs as the Inflyu app and adds no developer surcharge.
Build direct HTTP integrations with the AI Influencer API, or connect compatible agents through the hosted Inflyu MCP server.