REST API · v1

Kristen Williams Marc Maessen John Janowski Jules Webb ★★★★★ Rated 4.9/5 · 620+ Reviews

Build social proof widgets straight from your code

One API key and five endpoints. Create a widget from 100+ types, list what you have, read a widget’s details, change its settings, delete it — then pull the synced posts and reviews as plain JSON.

Free to start 100+ widget types JSON in, JSON out
POST https://api.sociablekit.com/v1/widgets 201 Created
{
  "id": 25703403,
  "name": "Homepage Google Reviews",
  "status": "syncing",
  "widget_type": {
    "id": 22,
    "name": "Google Reviews",
    "category": "Reviews"
  },
  "source": {
    "place_id": "ChIJWc4q4YVTBogRWcwRAEVufE4"
  },
  "embed_code": "<div class=\"sk-ww-google-reviews\" data-embed-id=\"25703403\"></div>",
  "feed_url": "https://data.accentapi.com/feed/25703403.json",
  "created_at": "2026-08-07T11:46:25Z"
}

Trusted by Leading Brands

  • Web Summit logo
  • Harley Davidson logo
  • L'Oreal logo
  • Samsung logo
  • The North Face logo
  • Big Machines Label Group logo
  • Turkish Airlines logo
  • US Foods logo

Web Summit, Harley Davidson, L'Oreal, Samsung, The North Face, Big Machines Label Group, Turkish Airlines and US Foods all display their social proof with SociableKIT.

Endpoints

Everything you need in one small API

Widgets are the only resource. Create them, read them, change them, remove them — and read their content from a public feed URL that never needs a key.

Base URL https://api.sociablekit.com/v1. Every request takes an Authorization: Bearer header and speaks JSON both ways.

Request & response

See exactly what comes back

Pick an operation to see a copy-and-run request next to the response it returns.

Pass a widget type and its source. SociableKIT starts syncing right away and hands back the embed code plus the JSON data feed URL for that widget.

Request cURL

create-widget.sh
curl -X POST https://api.sociablekit.com/v1/widgets \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "widget_type_id": 22,
    "name": "Homepage Google Reviews",
    "source": {
      "place_id": "ChIJWc4q4YVTBogRWcwRAEVufE4"
    }
  }'

Response 201 Created

application/json
{
  "id": 25703403,
  "name": "Homepage Google Reviews",
  "status": "syncing",
  "widget_type": {
    "id": 22,
    "name": "Google Reviews",
    "category": "Reviews"
  },
  "source": {
    "place_id": "ChIJWc4q4YVTBogRWcwRAEVufE4"
  },
  "embed_code": "<div class=\"sk-ww-google-reviews\" data-embed-id=\"25703403\"></div>",
  "feed_url": "https://data.accentapi.com/feed/25703403.json",
  "created_at": "2026-08-07T11:46:25Z"
}

Every widget type takes its own source field — place_id for Google Reviews, username for Instagram, fb_page_id for Facebook. Call GET /v1/widget-types to see what a type expects before you create it.

A paginated list of your widgets with the type, sync status and data feed URL for each one. Useful for dashboards, audits, and finding the ID you need for the calls below.

Request cURL

list-widgets.sh
curl https://api.sociablekit.com/v1/widgets \
  -H "Authorization: Bearer YOUR_API_KEY"

Response 200 OK

application/json
{
  "data": [
    {
      "id": 25703403,
      "name": "Homepage Google Reviews",
      "status": "active",
      "widget_type": { "id": 22, "name": "Google Reviews" },
      "last_synced_at": "2026-08-07T03:53:45Z",
      "feed_url": "https://data.accentapi.com/feed/25703403.json"
    },
    {
      "id": 25658224,
      "name": "Instagram wall",
      "status": "active",
      "widget_type": { "id": 1, "name": "Instagram Feed" },
      "last_synced_at": "2026-08-07T02:11:08Z",
      "feed_url": "https://data.accentapi.com/feed/25658224.json"
    }
  ],
  "meta": { "total": 2, "page": 1, "per_page": 25 }
}

Narrow the list with ?widget_type_id=22, ?status=active or ?search=homepage, and page through it with ?page=2.

The full record for a single widget, including every design setting you can change and the exact embed snippet to paste on your site.

Request cURL

get-widget.sh
curl https://api.sociablekit.com/v1/widgets/25703403 \
  -H "Authorization: Bearer YOUR_API_KEY"

Response 200 OK

application/json
{
  "id": 25703403,
  "name": "Homepage Google Reviews",
  "status": "active",
  "widget_type": {
    "id": 22,
    "name": "Google Reviews",
    "category": "Reviews"
  },
  "source": {
    "place_id": "ChIJWc4q4YVTBogRWcwRAEVufE4",
    "name": "Devils Lake Climbing Guides",
    "overall_star_rating": "5.0",
    "rating_count": "139"
  },
  "settings": {
    "layout": "grid",
    "column_count": "3",
    "post_count": "12",
    "show_date": true,
    "font_family": "Inter"
  },
  "embed_code": "<div class=\"sk-ww-google-reviews\" data-embed-id=\"25703403\"></div>",
  "feed_url": "https://data.accentapi.com/feed/25703403.json",
  "last_synced_at": "2026-08-07T03:53:45Z",
  "created_at": "2026-08-07T11:46:25Z"
}

This returns the widget’s configuration. For the synced posts and reviews themselves, read the JSON data feed at the feed_url.

Send only the fields you want to change. Design settings update live on every page the widget is already embedded on — you never re-paste the embed code.

Request cURL

update-widget.sh
curl -X PATCH https://api.sociablekit.com/v1/widgets/25703403 \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Homepage reviews carousel",
    "settings": {
      "layout": "carousel",
      "column_count": "4",
      "post_count": "24",
      "show_5_star_rating": true
    }
  }'

Response 200 OK

application/json
{
  "id": 25703403,
  "name": "Homepage reviews carousel",
  "settings": {
    "layout": "carousel",
    "column_count": "4",
    "post_count": "24",
    "show_5_star_rating": true
  },
  "updated_at": "2026-08-25T04:12:07Z"
}

Colors, fonts, layout, ordering and post counts are all settings, so you can theme a widget from your own deploy script instead of the customize page.

Removes the widget from your account and frees up the slot on your plan. Any embed of that widget stops rendering, so pull the snippet off your pages too.

Request cURL

delete-widget.sh
curl -X DELETE https://api.sociablekit.com/v1/widgets/25703403 \
  -H "Authorization: Bearer YOUR_API_KEY"

Response 200 OK

application/json
{
  "id": 25703403,
  "deleted": true,
  "deleted_at": "2026-08-25T04:14:32Z"
}

Deleting a widget is permanent. If you only want to take it off one page, remove the embed snippet and leave the widget in place.

The actual content lives on its own CDN URL, one per widget. No API key, no rate limits — a plain GET that returns the same shape for every source.

Request cURL

read-feed.sh
curl https://data.accentapi.com/feed/25703403.json

Response 200 OK

application/json
{
  "solution_info": {
    "embed_id": 25703403,
    "solution_name": "Google Reviews",
    "category_name": "Reviews"
  },
  "bio": {
    "place_id": "ChIJWc4q4YVTBogRWcwRAEVufE4",
    "name": "Devils Lake Climbing Guides",
    "overall_star_rating": "5.0",
    "rating_count": "139"
  },
  "reviews": [
    {
      "id": "116069990159082135114",
      "reviewer_name": "Adam Schuetz",
      "review_date_time": "2026-08-04T11:53:36+08:00",
      "rating": "5",
      "review_text": "We did a group climb as part of the Sundown Ski Patrol..."
    }
  ],
  "settings": { "layout": "grid", "column_count": "3", "post_count": "12" },
  "last_sync_info": "2026-08-07T03:53:45.798Z"
}

That URL is live — open it in your browser to see a real response. The feed is CORS-enabled, so client-side code can read it directly.

Authentication

One key, one header

No OAuth dance, no app review, no token refresh. Generate a key in your account and send it on every request.

Base URL

https://api.sociablekit.com/v1

All management endpoints live under this prefix and return JSON.

Auth header

Authorization: Bearer YOUR_API_KEY

Your key is tied to your own account only. Keep it server-side, and revoke or regenerate it the moment it leaks.

  1. Create a free account

    Sign up free at app.sociablekit.com if you don’t have one yet. No credit card needed.

  2. Generate your API key

    Open Settings → API Key and click Generate API key. The key is shown once, so copy it into your secret store right away.

  3. Make your first call

    Send GET /v1/widgets with the key in an Authorization header. A 200 with an empty data array means you’re connected and ready to create.

Widget content

Read the data with one public URL

The API manages widgets; the data feed serves their content. Every widget gets a permanent JSON URL that always returns its latest synced posts or reviews.

Feed URL format

https://data.accentapi.com/feed/YOUR_EMBED_ID.json

The embed ID is the widget id returned by the API, so the URL is predictable the moment a widget is created — and it never changes.

Try it now

https://data.accentapi.com/feed/25703403.json

A live Google Reviews feed. Open it in your browser to see the full response before you write a line of code.

Response 200 OK

25703403.json
{
  "solution_info": {
    "embed_id": 25703403,
    "solution_name": "Google Reviews",
    "category_name": "Reviews"
  },
  "bio": {
    "place_id": "ChIJWc4q4YVTBogRWcwRAEVufE4",
    "name": "Devils Lake Climbing Guides",
    "overall_star_rating": "5.0",
    "rating_count": "139"
  },
  "reviews": [
    {
      "id": "116069990159082135114",
      "reviewer_name": "Adam Schuetz",
      "review_date_time": "2026-08-04T11:53:36+08:00",
      "rating": "5",
      "review_text": "We did a group climb as part of the Sundown Ski Patrol..."
    }
  ],
  "settings": { "layout": "grid", "column_count": "3", "post_count": "12" },
  "last_sync_info": "2026-08-07T03:53:45.798Z"
}

Trimmed for readability — the real response includes every review, the full source profile and your saved design settings.

Feed reference

The same shape for every source

Instagram, TikTok, Google Reviews — every feed returns these top-level keys, so the parser you write once keeps working as you add sources.

bio object

The source profile: name, link, profile picture, follower or rating counts.

posts array

Feed items for post-based widgets — text, media, permalinks and timestamps.

reviews array

Review items for review widgets — reviewer name, photo, rating, text and date.

solution_info object

Widget metadata: embed ID, widget type, category and current widget status.

settings object

The design settings you last saved — colors, fonts, layout and post count.

last_sync_info string

ISO timestamp of the last successful sync, so you know how fresh the data is.

Why build on it

Everything the platform APIs make hard

Instagram, Facebook, Google and TikTok each want their own app, review queue, quota and token refresh. SociableKIT gives you one key and one shape for all of them.

One key for 100+ sources

Skip app registration and review queues on every platform. We hold the platform credentials so you never do.

One shape for every source

Create a TikTok widget the same way you create a Google Reviews one, and parse both responses with the same code.

Stays fresh on its own

We sync in the background and absorb every upstream API change, so your integration doesn’t break when a platform ships a new version.

No quotas on reads

Widget content is a static file on our CDN, so rendering it is never throttled. No backoff code to write.

Ship widgets or raw data

Paste the returned embed code for a finished widget, or render the JSON yourself in your own design system.

Free to prototype

Build against a real widget and a real feed on the free plan — no credit card — and upgrade when you ship.

3 simple steps

From API key to live widget

Two API calls and a paste. That’s the whole integration.

1

Generate your key

Open Settings → API Key in the app and generate a key for your account.

2

Create a widget

POST a widget type and source. You get back an ID, embed code and feed URL.

3

Embed it or read it

Paste the embed code on your site, or fetch the feed URL and render the JSON yourself.

Pricing

Simple pricing. Cancel anytime.

Free

$0

  • 1 source
  • JSON data feed access
  • 2,000 monthly views
  • Manual sync requests
Start free

Business

$40/mo

  • Up to 10 sources
  • Everything in Pro
  • Advanced analytics
  • 24/7 chat & email support
See details

A source is one data feed. The API costs nothing extra — widgets you create with it use the same allowances as widgets you create in the app.

In their words

The part we’re proudest of

Our own social proof — reviews our customers left publicly, of their own accord. Every card links back to the original, so you can check any of them yourself.

Wellness Educator Vanessa GoldeenGoogle · June 2025Read this review by Wellness Educator Vanessa Goldeen on Google (opens in a new tab)

★★★★★

“Gosh after having a calendar on our Weebly website that was a complete fail, and going to a bunch of different apps that offered a way to simplify this process I found these guys!!! Great, easy, wonderful service...a rarity these days. I am check out what else they offer and hope to expand my use of their supportive offering!”
Aahil ShahidGoogle · July 2025Read this review by Aahil Shahid on Google (opens in a new tab)

★★★★★

“BEST WIDGET APP FOR SURE!!!”
Tara RenickGoogle · July 2025Read this review by Tara Renick on Google (opens in a new tab)

★★★★★

“First time using this app and I love it! Their support was quick and easy, Jan was very helpful without making me feel stupid.”
Derrick IngsGoogle · February 2026Read this review by Derrick Ings on Google (opens in a new tab)

★★★★★

“Their support is superb”
Philip MehlGoogle · June 2025Read this review by Philip Mehl on Google (opens in a new tab)

★★★★★

“Very easy to use, works really well, and super responsive support. Thanks”
Don GingoldGoogle · December 2025Read this review by Don Gingold on Google (opens in a new tab)

★★★★★

“a great little widget! quick to make, and just what a small organization needs. the assistant at this senior care system is happy to make a facebook event, but is VERY resistant to logging into the website to add the same info there. the Facebook Event listing widget is JUST what they need. Thanks SociableKit!”
Sergei NossoffGoogle · August 2026Read this review by Sergei Nossoff on Google (opens in a new tab)

★★★★★

“SociableKIT is easy to use, reliable, and a great solution for displaying social media content on a website. The setup is quick, the widgets look professional, and the customisation options are excellent. Customer support is also responsive and helpful. Highly recommended!”
Erik Schlytter-HenrichsenGoogle · December 2025Read this review by Erik Schlytter-Henrichsen on Google (opens in a new tab)

★★★★★

“Very easy to implement. Looks great on our website. Thanks!”
Christophe BajonGoogle · October 2025Read this review by Christophe Bajon on Google (opens in a new tab)

★★★★★

“Honestly i work in IT and at first it looked so simple that i wondered how nobody else was doing this. Then i tried for free, it worked so easily that i didn’t even care or think about it anymore and let it work perfectly. They I added more widgets with the paid plan as it is not so expensive and really time saving. Cheery on the cake, if you have an improvement idea, you can reach a real person in less than 2…”
Drippies GirlGoogle · June 2025Read this review by Drippies Girl on Google (opens in a new tab)

★★★★★

“Great results. I was able to link my etsy page to my weebly website. Of course not by myself - the chat feature had Stephen help me out. AI told me about sociablekt but did not set it up correctly. Chat is better than AI. Humans are great!!!”
RAN NaylorGoogle · December 2025Read this review by RAN Naylor on Google (opens in a new tab)

★★★★★

“Best way to put a widget onto your website. Their tech support is on top of it if you need help!”
David MendozaGoogle · December 2025Read this review by David Mendoza on Google (opens in a new tab)

★★★★★

“After hours chat support was quick, live and fixed my problem in minutes!”
Sam StockwellGoogle · June 2025Read this review by Sam Stockwell on Google (opens in a new tab)

★★★★★

“Great widgets, decent customization, fantastic support team. Worth the money!”
Davide GreeneGoogle · August 2025Read this review by Davide Greene on Google (opens in a new tab)

★★★★★

“Amazing support! Far beyond expectations. :)”
Jantien GuldemondGoogle · November 2025Read this review by Jantien Guldemond on Google (opens in a new tab)

★★★★★

“Never had such a quick reply on a problem, awesome!”
Donata Stroink-SkillrudGoogle · July 2026Read this review by Donata Stroink-Skillrud on Google (opens in a new tab)

★★★★★

“The privacy team at SociableKIT is extremely helpful! I reached out to them with some questions and they answered all of my questions promptly and accurately. I wish that other companies and privacy teams were this responsive and helpful!”
Michel MensGoogle · June 2025Read this review by Michel Mens on Google (opens in a new tab)

★★★★

“The widget is working well, now I dont need to manually add content to my website. In case there is an issue, the support is very responsive and quickly solves the problem.”
Matt WolfeGoogle · December 2025Read this review by Matt Wolfe on Google (opens in a new tab)

★★★★★

“Excellent Widgets. Highly recommend for your Facebook website posts.”
Matthew EarlGoogle · July 2025Read this review by Matthew Earl on Google (opens in a new tab)

★★★★★

“Really great app giving the ability to easily put google reviews on your own website. The free option is excellent.”
Daniel AustinGoogle · November 2025Read this review by Daniel Austin on Google (opens in a new tab)

★★★★★

“This plugin for our website and blog has supercharged our SEO with the widget that automatically imports all our LinkedIn posts. Big shout out to Jan from SociableKIT who assisted me with a problem I encountered. Support for this product has been excellent!”
Ella SargentGoogle · August 2026Read this review by Ella Sargent on Google (opens in a new tab)

★★★★★

“I used it because I wanted to add my Google reviews to my website, and I was looking for a free, simple, and easy-to-use solution to display them in a nice way without having my reviews translated every time. So I looked at several competitors, and this one was the one that best matched what I was looking for. On top of that, I made a small mistake and it wasn’t working the way I wanted it to, so I contacted someone…”
Ranjit AtwalGoogle · November 2025Read this review by Ranjit Atwal on Google (opens in a new tab)

★★★★★

“Brilliant service, helps me to share current informative stories and videos with my website visitors, their support team is excellent, swiftly replying to emails and resolving any bugs. The support is amazing, so efficient, I tip my hat.”
Michael KeeslingGoogle · June 2025Read this review by Michael Keesling on Google (opens in a new tab)

★★★★★

“great widget for reviews and even greater support. completely impressed.”
Lucy HuxhamGoogle · June 2026Read this review by Lucy Huxham on Google (opens in a new tab)

★★★★★

“Great products used for my company website! Highly recommend!”
Maanasa from SitesGoGoogle · March 2026Read this review by Maanasa from SitesGo on Google (opens in a new tab)

★★★★★

“Been using them for 3 years, no regrets! Tough to beat their price and quality :)”
John BurtchGoogle · January 2026Read this review by John Burtch on Google (opens in a new tab)

★★★★★

“works beautifully. really builds trust and leads to conversions. thank you sociablekit!!”
Daniel HernandezGoogle · July 2026Read this review by Daniel Hernandez on Google (opens in a new tab)

★★★★★

“SociableKIT is very easy to use and made it simple to display Google reviews on my website. The setup was quick, and the widgets look clean and professional. Highly recommended!”
Peggy Vanhala BlackwellGoogle · October 2025Read this review by Peggy Vanhala Blackwell on Google (opens in a new tab)

★★★★★

“We are using sociablekit to creat a feed of our fb events onto several websites! What a relief to just create on FB and have it appear on our website. Ive used the chat support, they are responsive and helpful.”
Jeroen SminkGoogle · September 2025Read this review by Jeroen Smink on Google (opens in a new tab)

★★★★★

“We highly recommend SociableKIT for displaying your Instagram posts on your website. Their support team is incredibly helpful and responsive. We found a minor bug with their platform, and they fixed it in less than 24 hours. The support is truly great.”
Philip BonsignoreGoogle · December 2025Read this review by Philip Bonsignore on Google (opens in a new tab)

★★★★★

“Great service that actually responds and helps! Totally worth it for the working artist/performer to consolidate and update everything Social!”
angelo alfanoGoogle · July 2025Read this review by angelo alfano on Google (opens in a new tab)

★★★★★

“Very nice website for embedding platforms on websites”
Susan BuranichGoogle · October 2025Read this review by Susan Buranich on Google (opens in a new tab)

★★★★★

“I am a first time user and the support was Excellent! They helped in every way possible. I am very satisfied with SociableKIT.”
ΒΑΣΙΛΗΣ ΣΤΑΜΟΣGoogle · June 2025Read this review by ΒΑΣΙΛΗΣ ΣΤΑΜΟΣ on Google (opens in a new tab)

★★★★★

“Ive had an excellent experience using SociableKIT. The platform itself is intuitive and user-friendly, making it straightforward to integrate social feeds and enhance my website effectively. What truly stands out, however, is their exceptional support team. Any queries or technical challenges Ive encountered have been addressed promptly and professionally. Their fast, reliable support significantly enhances the…”
KayGoogle · June 2025Read this review by Kay on Google (opens in a new tab)

★★★★★

“Stephen was very helpful with my widget. Im a social media manager and he helped me create the perfect grid for my clients”
Katelyn Lehman, Ph.D.Google · November 2025Read this review by Katelyn Lehman, Ph.D. on Google (opens in a new tab)

★★★★★

“The support team with SociableKIT is responsive, capable, and kind. I was a little skeptical at first because Ive not used this type of widget creation service, but any difficulties Ive had were met with kindness and support. The end result is beautiful!”
Shea CoxGoogle · December 2025Read this review by Shea Cox on Google (opens in a new tab)

★★★★★

“5-stars for customer service and help. So happy I went with SociableKIT over any other option (and I trialed many!).”
Demi SGoogle · August 2026Read this review by Demi S on Google (opens in a new tab)

★★★★★

“A great service and very friendly tech support. A small issue I had was dealt with immediately even on the free tier. Highly recommend!”
Laura MockGoogle · August 2025Read this review by Laura Mock on Google (opens in a new tab)

★★★★★

“Highly recommend - their customer service is off the charts - and I am not super tech savvy, and they could even help me! :) Thank you, Joviegel!”
Antonia MagnisaliGoogle · June 2025Read this review by Antonia Magnisali on Google (opens in a new tab)

★★★★★

“Very easy to integrate my reviews in my shop.”
Nicole BouwmanGoogle · June 2025Read this review by Nicole Bouwman on Google (opens in a new tab)

★★★★★

“Solved the problem of putting social media feeds and YouTube live streams on websites for my clients! Really excited to be able to offer this!”
Sheri PaulGoogle · June 2025Read this review by Sheri Paul on Google (opens in a new tab)

★★★★★

“This was a surprising discovery when I was struggling to find a solution to a clients event feed! I Googled a solution for what I needed and sociableKIT came up along with zapier. Zapiers solution didnt look like it was going to work, so I jumped over to socialblekit and its user friendly and the support is fantastic. Very pleased, and frankly pleasantly surprised.”
Charlie WatersGoogle · September 2025Read this review by Charlie Waters on Google (opens in a new tab)

★★★★★

“When building websites, it is essential to have reliable components to extend the core functionality of the platform. SociableKIT not only offers the capabilities I need for my current project, but also provides excellent support. When I opened an issue, they were very quick to respond and fix the problem. 10/10 Highly recommend!”
David TarryGoogle · June 2024Read this review by David Tarry on Google (opens in a new tab)

★★★★★

“Brilliant piece of kit and fantastic support too - what more could you want??”
Brandon LeeGoogle · June 2025Read this review by Brandon Lee on Google (opens in a new tab)

★★★★★

“Great plugin, very reliable and easy to use. I also really love the display and design capabilities, my favorite social feed plugin on the market!”
Peter ChiarielloGoogle · December 2025Read this review by Peter Chiariello on Google (opens in a new tab)

★★★★★

“This is a great help in embedding things like Google Reviews on a website, and support is provided by real people, real-time, even for people like me (on a free plan!)”
Mike HillGoogle · July 2026Read this review by Mike Hill on Google (opens in a new tab)

★★★★★

“SociableKIT is an excellent service. I am the Chairman of a crown green bowling club, and we use the SociableKIT widget to automatically display our Facebook news on our website. As a small, low-income community club, the free widget is the perfect solution for us. It works extremely well and saves us a great deal of time keeping our website up to date. Recently we experienced a problem with the widget, and the…”
Jon SlaughterGoogle · June 2026Read this review by Jon Slaughter on Google (opens in a new tab)

★★★★★

“The widgets provided off the shelf are terrific and provide a great value to my website. And the customer service has been amazing. They are very reactive to my requests for improvements and when fixes are needed they are completed in a very timely fashion.”
Brian YoungGoogle · October 2025Read this review by Brian Young on Google (opens in a new tab)

★★★★★

“Great platform. Seriously easy to use!”
Matthew LeyGoogle · June 2025Read this review by Matthew Ley on Google (opens in a new tab)

★★★★★

“I’ve had an amazing experience using SocialbleKIT. Their support team (Renz in particular) is always quick to respond and super helpful and patient. Highly recommend to anyone looking to elevate their online presence!”
Julie ParkGoogle · July 2025Read this review by Julie Park on Google (opens in a new tab)

★★★★★

“searching a lot widgets, Sociablekit is easy to setup, and customer service is good.”
Asit AithalGoogle · December 2025Read this review by Asit Aithal on Google (opens in a new tab)

★★★★★

“Awesome tool. Great support. Highly recommended.”
Jefferson FowlerGoogle · February 2026Read this review by Jefferson Fowler on Google (opens in a new tab)

★★★★★

“SociableKIT is wonderful to work with! The customer service is quick, easy, and always gets the job done! I highly recommend them!”
Jack HarrisGoogle · June 2026Read this review by Jack Harris on Google (opens in a new tab)

★★★★★

“Excellent product and helpful staff have answered all my questions and concerns when needed.”
ROI DesignsGoogle · June 2025Read this review by ROI Designs on Google (opens in a new tab)

★★★★★

“1st class and easiest way to embed a Facebook Events page. Tried many others.”
Yan PekarGoogle · December 2025Read this review by Yan Pekar on Google (opens in a new tab)

★★★★★

“One of the best customer support experiences I have ever had. Very prompt, incredibly helpful, and efficient!”
RafferteaGoogle · June 2026Read this review by Raffertea on Google (opens in a new tab)

★★★★★

“I wish dealing with external services I require for our websites were all as easy and reliable as SociableKIT. Need a aggregator without a load of added faffing around, with a team quick to respond and pleasant to work with? then look no further.”
Marta AntunesGoogle · November 2025Read this review by Marta Antunes on Google (opens in a new tab)

★★★★★

“Ive used them for years and never had an issue. Im really happy with their service”
Heart To Soul HealingsGoogle · November 2025Read this review by Heart To Soul Healings on Google (opens in a new tab)

★★★★★

“Wonderful easy to use widget to share live reviews on my website. Excellent customer service!”
Judi CGoogle · July 2026Read this review by Judi C on Google (opens in a new tab)

★★★★★

“I've been incredibly impressed with SociableKIT's Medium RSS Feed Widget. I wanted a clean, reliable way to showcase my Medium articles on my website without having to update them manually, and this widget has exceeded my expectations. It was straightforward to set up, integrates beautifully with my site's design, and automatically keeps my latest content up to date. What I appreciate most is that it simply works…”
David AstinGoogle · November 2025Read this review by David Astin on Google (opens in a new tab)

★★★★★

“The YouTube widget they offer is phenomenal. I love the ability to embed an entire YouTube channel into your own website and have it look so native.”

Common questions

Frequently asked questions

Everything about keys, endpoints, limits and the JSON data feed.

Where do I get my API key?

Sign in and open Settings → API Key at app.sociablekit.com, then click Generate API key. The key is shown once, so copy it straight into your secret store. You can regenerate or revoke it from the same page at any time.

How is the API different from the JSON data feed?

The REST API manages widgets — create, list, read, update and delete. The JSON data feed at https://data.accentapi.com/feed/YOUR_EMBED_ID.json serves the synced content of one widget. The API needs your key; the data feed is a public URL with no key and no rate limits.

Do I still need to paste an embed code?

Only if you want SociableKIT to render the widget for you. The create response includes ready-to-paste embed_code. If you would rather build your own UI, skip the embed entirely and render the JSON data feed yourself.

Which widget types can I create through the API?

All of them — over 100 types across social feeds, reviews, photos, videos, events and job listings. Call GET /v1/widget-types to search the live catalog and see which source field each type expects.

Do API-created widgets count against my plan?

Yes. Widgets you create through the API use the same source and widget allowances as widgets you create in the app. If a call would take you over your limit, the API returns a clear error telling you what to upgrade. See pricing for the limits on each plan.

Are there rate limits?

The management API is rate limited per API key, and every response includes the remaining quota in its headers. Reading a widget’s JSON data feed is not rate limited at all — it is a static file served from our CDN.

What if I would rather not write code at all?

Connect an AI assistant instead. Our MCP server lets Cursor, Claude or ChatGPT create widgets in your account from a plain-English request, using the same API key.

How do I get access?

Generate your API key in the app to get started. The widget management endpoints are rolling out to accounts in stages — if they are not enabled on yours yet, contact support and we will switch them on. The JSON data feed works on every plan today, including free.

Put social proof in your pipeline

Generate a key, create your first widget with one POST, and ship it in the next few minutes.

Get your API key

Free to start · No credit card · Works with your existing account