krowdly.net APIkrowdly.net ↗
Access Krowdly's social media management services, platform coverage, pricing model details, and FAQ data via 2 structured API endpoints.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/82058730-b829-407b-acc2-8296eb162027/get_services' \ -H 'X-API-Key: $PARSE_API_KEY'
Retrieves all services and features offered by Krowdly, including service descriptions, target customers, platforms managed, pricing model information, and contact details. No pricing amounts are publicly listed on the site.
No input parameters required.
{
"type": "object",
"fields": {
"company": "string",
"contact": "object with email, phone, address, and booking_url",
"tagline": "string",
"services": "array of service objects with number, name, and description",
"ad_spend_note": "string describing how ad spend is handled",
"pricing_model": "string describing the billing approach",
"target_customers": "array of business types served",
"platforms_managed": "array of social platforms included",
"includes_all_plans": "string describing what every plan includes"
},
"sample": {
"company": "KROWDLY",
"contact": {
"email": "[email protected]",
"phone": "+1 (555) 012-3456",
"address": "123 Main St, Springfield, IL 62704",
"booking_url": "https://calendly.com/john-doe/30min"
},
"tagline": "Social media management for restaurants and local businesses",
"services": [
{
"name": "Social Media Management",
"number": "01",
"description": "Full management of Instagram, TikTok, and Facebook. Content calendar, captions written in your voice, posts scheduled at the right times, and Stories covering daily specials and new menu items."
},
{
"name": "Short Form Videos & Reels",
"number": "02",
"description": "Monthly shot list (exactly what to film and how) + full editing of Reels and TikToks built for the algorithm."
},
{
"name": "Google Business Profile",
"number": "03",
"description": "Full GBP setup, optimization, and ongoing management. Weekly posts, review responses, local keyword tracking, and monthly ranking reports."
},
{
"name": "Review Response Management",
"number": "04",
"description": "Every review (good, bad, and the ones that don't make sense) get a thoughtful, on-brand reply."
},
{
"name": "Meta and Google Ads",
"number": "05",
"description": "Campaign setup, targeting, creative, copy, and bidding. Ad spend billed separately."
},
{
"name": "Local SEO Optimization",
"number": "06",
"description": "Keyword tracking, directory citations across 20+ platforms (Yelp, TripAdvisor, Apple Maps), competitor ranking comparison, and monthly SEO content."
}
],
"ad_spend_note": "Ad spend goes directly to the platform (Facebook, Instagram, or Google) and is billed separately.",
"pricing_model": "Month-to-month, no long-term contracts. Contact for pricing.",
"target_customers": [
"Restaurants",
"Cafes & Coffee Shops",
"Bars & Nightlife",
"Food Trucks",
"Fast Casual",
"Fine Dining",
"Landscapers",
"Cleaning Companies",
"HVAC & Plumbers",
"Home Services"
],
"platforms_managed": [
"Instagram",
"TikTok",
"Facebook",
"Google Business Profile"
],
"includes_all_plans": "Every plan includes Instagram, TikTok, Facebook, and Google Business Profile, fully managed."
}
}About the krowdly.net API
The Krowdly API exposes structured data from krowdly.net across 2 endpoints, covering the agency's social media management services and homepage FAQ content. The get_services endpoint returns 10+ response fields including named services, target customer types, platforms managed, pricing model details, and contact information. The get_faqs endpoint returns a full array of question-and-answer pairs with a total count.
Services Data
The get_services endpoint returns a complete picture of what Krowdly offers as a social media management agency focused on restaurants and local businesses. The response includes a services array where each object carries a number, name, and description. Supporting fields cover target_customers (an array of business types served), platforms_managed (social platforms included in management), pricing_model (billing approach description), ad_spend_note (how ad spend is handled separately from management fees), and includes_all_plans (features common across plan tiers). Contact details come back as a structured contact object with email, phone, address, and booking_url.
FAQ Data
The get_faqs endpoint returns all FAQ entries from Krowdly's homepage as a faqs array. Each object in the array has a question field and an answer field. A total integer indicates how many FAQ items are present. Topics covered include contract terms, supported platforms, video content requirements, results timeline, content satisfaction processes, business types served, and how ad spend works.
Coverage Scope
Both endpoints require no input parameters — each call returns the full available dataset for that resource. The API reflects the publicly available information on krowdly.net, which is scoped to an agency that serves restaurants and local businesses. No individual client results, portfolio case studies, or campaign performance data are exposed through these endpoints.
- Sync Krowdly's service descriptions and platform list into a marketing agency comparison tool
- Populate a chatbot with FAQ content from
get_faqsto answer common questions about social media management for restaurants - Extract
target_customersandplatforms_managedarrays to categorize Krowdly within a B2B agency directory - Pull
contactfields (email, phone, booking_url) into a CRM for outreach or partnership tracking - Use
pricing_modelandad_spend_notefields to compare billing structures across social media agencies - Ingest
servicesarray data to build a structured feature matrix comparing local-business social media agencies
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does Krowdly provide an official developer API?+
What does the `get_faqs` endpoint return, and how many FAQ items does it include?+
faqs array of objects, each with a question and answer field, along with a total integer showing the count of FAQ entries. The content covers topics such as contract terms, video requirements, results timeline, platforms supported, and how ad spend is billed — reflecting whatever FAQ items Krowdly currently publishes on their homepage.Does the API return individual client case studies or campaign performance data?+
Are pricing amounts returned by `get_services`?+
pricing_model field describes the billing approach in general terms, and ad_spend_note explains how ad spend is handled, but Krowdly does not publicly list dollar amounts on their site, so none appear in the response. You can fork this API on Parse and revise it to capture any pricing data if Krowdly adds it to a public page in the future.