Create creator
/v1/clipsonar/creatorsAttach a public Instagram or TikTok profile and start analysis. Returns `202` with `job_id` for polling.
Query parameters
This endpoint has no query parameters.
Request body
Send JSON with Content-Type: application/json.
profileUrlstringrequiredPublic profile URL
Example: https://www.instagram.com/natgeo/
namestringoptionalOptional display name override
maxCountintegeroptionalMax videos to analyze (capped by plan/API quota)
Example: 50
refreshbooleanoptionalEnable continuous refresh analysis
Example: true
{
"profileUrl": "https://www.instagram.com/natgeo/",
"maxCount": 20,
"refresh": false
}Response
202 Accepted. Poll `job_id` or wait for `creator.ready`.
creator_idstringrequiredCreator id to use in later calls
job_idstring | nullrequiredAsync job id for polling GET /jobs/:id
statusstringrequiredJob status such as `processing` or `queued`
already_attachedbooleanoptionalTrue when the profile was already attached (create only)
credits_chargednumberoptionalCredits charged for this create (create only)
{
"creator_id": "354bb8ac-1111-2222-3333-444455556666",
"job_id": "82fde0d4-1111-2222-3333-444455556666",
"status": "processing",
"already_attached": false,
"credits_charged": 0
}

