Skip to main content
POST
/
v1
/
brand-safety
/
creators
import InflushipAPI from 'influship';

const client = new InflushipAPI({
apiKey: 'My API Key',
});

const response = await client.brandSafety.analyzeCreators({
creator_ids: ['123e4567-e89b-12d3-a456-426614174000', '987fcdeb-51a2-43d1-9f12-345678901234'],
});

console.log(response.results);
{
"results": [
{
"id": "<string>",
"analysis": {
"ok": true,
"rating": "A",
"overall_confidence": 0.92,
"summary": "Content is family-friendly and aligns with positive brand values",
"flags": [],
"reasoning": "Analysis of 20 recent posts shows consistent positive messaging focused on health and wellness with no controversial content",
"metadata": {
"model_version": "<string>",
"analysis_date": "2023-11-07T05:31:56Z",
"processing_time_ms": 123,
"content_analyzed": {
"text_length": 123,
"posts_count": 123
}
}
}
}
]
}

Authorizations

X-API-Key
string
header
required

API key for authentication

Body

application/json
creator_ids
string<uuid>[]
required

Creator IDs to analyze

Required array length: 1 - 100 elements
Example:
[
"123e4567-e89b-12d3-a456-426614174000",
"987fcdeb-51a2-43d1-9f12-345678901234"
]

Response

Brand safety analysis results

results
object[]