# Identify Influencer by Email (real-time) Identifies a single influencer based on their email address in real-time. Unlike the async endpoint, this returns the influencer data immediately if a match is found. Please use the async endpoint for high-throughput use cases or when possible. Endpoint: GET /v1/search/identify_influencers_real_time Version: 1.4.2 Security: ApiKeyAuth ## Query parameters: - `brand_id` (integer, required) ID of the brand. Example: 4810 - `influencer_email` (string, required) Email address of the influencer to identify. Example: "influencer@example.com" ## Response 200 fields (application/json): - `is_influencer` (boolean) Whether the email belongs to a known influencer. - `type` (string) The social media platform (if influencer is found). Example: "instagram" - `user_id` (string) The platform-specific user ID (if influencer is found). Example: "308206489" - `url` (string) URL to the influencer's profile (if influencer is found). Example: "https://www.instagram.com/therock/" - `username` (string) The influencer's handle/username (if influencer is found). Example: "therock" - `fullname` (string) The influencer's display name (if influencer is found). Example: "Dwayne Johnson" - `picture` (string) URL to the influencer's profile picture (if influencer is found). - `followers` (integer) Number of followers (if influencer is found). Example: 1347 - `is_verified` (boolean) Whether the influencer is verified on the platform (if influencer is found). ## Response 400 fields