Skip Main Site Navigation

AddThis

AddThis Sharing Endpoints



Overview

AddThis offers a set of URL endpoints that allow you to share content from your website to any of our supported destination services. If you don't want to, or can't, use the AddThis JavaScript in-page tools (our Client API), you can just link to these server endpoints directly. Just send the user's browser to these endpoints and AddThis' backend will put the user thorugh the appropriate destination-specific sharing process.

For example, this link uses the generic endpoint to share addthis.com, and this one shares to Facebook directly. Here's what the HTML looks like:

<a href="http://api.addthis.com/oexchange/0.8/offer?url=http://addthis.com" rel="nofollow">this link</a>
<a href="http://api.addthis.com/oexchange/0.8/forward/facebook/offer?url=http://addthis.com" rel="nofollow">this one</a>

The endpoints give you a uniform URL pattern, regardless of the destination (this pattern is oexchange-compliant). You control the client side -- simple HTML links, fancy buttons and UI treatments, Flash applications, or any other technique you can use to call out to a browser. You have full control over the user experience, but still have access to the broad set of destination services and publisher analytics that the AddThis platform offers.

Note: These endpoints are intended to be called directly by browsers and are designed for user interaction, and therefore cannot be called by scripts or backend services. We strongly recommend adding rel="nofollow" attributes to your HTML tags, otherwise search engine crawlers who follow your sharing api links can generate false shares in your analytics reports.

Unsupported Sharing Endpoint Services: Print, Favorites, Email App.




Endpoint Specification

All sharing endpoints are rooted at, and begin with:

http://api.addthis.com/oexchange/0.8
Share Menu

This endpoint renders a full-page sharing menu with buttons for all of our destination services. Use this endpoint when you know which URL is being shared, and you want to prompt the user with a set of possible destinations.

Parameters:
NameDescriptionTypeRequired?Example
urlURL of the page being shared.stringyeshttp://addthis.com
titleTitle of the page being shared.stringnoAddThis Home Page
descriptionShort description of the page being shared.stringnoAddThis: One button. Your content everywhere.
pubidYour publisher profile ID (used to attribute shares, in your analytics).stringnoaddthis

Share Forward

This endpoint redirects the browser to the specified site to complete a share. Use this endpoint when you know which URL is being shared and the desired destination. Pass the destination service code on the url path as shown.

SERVICE_CODE is just the short code for a supported service, as listed here.

Parameters:
NameDescriptionTypeRequired?Example
urlURL of the page being shared.stringyeshttp://addthis.com
titleTitle of the page being shared.stringnoAddThis Home Page
descriptionShort description of the page being shared.stringnoAddThis: One button. Your content everywhere.
pubidYour publisher profile ID (used to attribute shares, in your analytics).stringnoaddthis
email_templateEmail template to use for email sharing (requires pubid param)stringnomy_template
ctEnable click tracking (shared page must have AddThis client code to measure clicks)stringnoct=1
templateTemplate for composing your tweet (when sharing to twitter only)stringno{{title}}: {{url}}

Note: The template parameter has been deprecated in favor of the new Twitter intents parameters which are documented below.



Calling the Endpoints from Flash

These endpoints are extremely easy to integrate into Flash applications. Take a look at this guide for detail and example code.




Sharing Flash Content

The simplest way to call the endpoints is by passing a URL to a web resource. This URL can contain embedded Flash content, as described in this guide.

Specifying Flash Content Directly

In addition to operating on on-page tags, both versions of the endpoints also accept additional parameters to allow passing Flash object information directly, in cases where you can't decorate the page as is usually recommended.

Flash-Content Parameters

See the embedded content documentation for more information about these parameters, and when to use them.

NameDescriptionExample
screenshotThe URL of an image that can be used to show a preview of the page being sharedhttp://www.example.com/img/preview2374.png
swfurlThe URL of a Flash SWF to be shared(height and width are required if you provide this)http://www.example.com/assets/flash/mycoolflashthingy.swf
heightThe ideal height of the Flash object300
widthThe ideal height of the Flash object500

URL Shortening

We will automaticallly shorten urls shared to twitter if they're longer than 40 chars. If you like you can request url shortening on any share using our endpoints. Simply add the shortener=bitly parameter to your request and we will shorten your shared url with bit.ly before passing it to the destination. You can also shorten with your bitly account by passing these parameters:

  • shortener=bitly
  • bitly.login=<your bitly username>
  • bitly.apiKey=<your bitly api key>

If you have an awe.sm account you can shorten with awe.sm instead:

  • shortener=awesm
  • awesm.key=<your awesm Account API Key> (required)

Providing your account details will integrate your shares with your bit.ly or awe.sm click analytics.



Rate Limiting

Requests will be rate limited at 1000 requests/hour per ip address.


Sharing to Twitter

You can customize your Twitter shares with a few extra parameters on your request (optional). These parameters are passed through to Twitter and work as described in their web intents specification.

Optional Twitter Parameters
NameDescriptionExample
textText to show in the tweet, instead of the link's title.Check out this link
viaA Twitter account which is appended to your tweet like:
"[text] [url] via @[via]"
addthis
relatedComma separated list of related twitter accounts, suggested to the user after they tweet.clearspring,numbakrrunch

Note: To use these options you must not pass the template parameter which has been deprecated.