Skip to content

We have received complaints about the video embedded in our website. We would like to make some clarification about the embedding process.

Videos are collected trough the Youtube Api, we use an algorithm to match the closest video to the song you are searching but we can not:

  • Remove any video. (For copyright issues you need to contact Youtube, we have not control whatsoever on the videos.  Here were you can claim your rights: http://www.youtube.com/t/copyright_notice )
  • Alter the order.
  • Change it
  • Insert a missing one

In order to make easier to identify the videos whenever shown they come with the Youtube location link, so you can easily find them.

We are constantly improving our system and we hope one day to be “almost” perfect! ;)

Please note that there are not videos hosted or stored by us.

Ps. If you believe that somebody has posted a lyric and you are the legitimate right older you can follow this procedure to have it fixed.

We decided to make the Search Rest Api public so anybody can use it as they like, if you would like some other kind of Api, please let us know. If we can we will accommodate your wishes.

So this are main instruction of the Api, this is the example url to call for the Search Api:

- http://www.sharedj.com/search/search-api.php?s=[SearchTerm]&apiKey=[ApiKey]&outputType=[Json/Xml]&resultNumber=[Number of Result]&mail=[Your Contact Mail]

The parameters in the parenthesis are mandatory and following a brief explanation:

  • s=[SearchTerm] : The search string you want to pass to the service. Es “s=James Blunt”
  • apiKey=[ApiKey] : At the moment it’s fixed and the value is “Beta”. Es “apiKey=Beta”
  • outputType=[Json/Xml] : The format of the Api output. If you would like an Xml output you can use, “outputType=Xml”, if you would like a Json output you use “outputType=Json”
  • resultNumber=[Number of Result] : The number of result you would like to have (Still not implemented). Es. “resultNumber=20″
  • mail=[Your Contact Mail]: Contact mail. This is very important to updates or change of the service. Please use a valid email addres! Es. “mail=myname@mydomain.net”

For example a functioning url would be something like this: http://www.sharedj.com/search/search-api.php?s=u2&apiKey=Beta&outputType=Xml&resultNumber=10&mail=developer@domain.com

So you will have your Xml results ready to parse. Following a pasted a simple Php script that can help you out on create your search page.
This block will get the Feed and insert the various value:

<?php
//Api Key
$apiKey                    = ‘Beta’;
//Query String
$searchQuery             = $_GET['s'];
//Number of the results I want to fetch
$resultNumber            = 10;
//Build the Url
$searchUrlFeed            = ‘http://www.sharedj.com/search/search-api2.php?s=’.$searchQuery.’&apiKey=’.$apiKey.’&outputType=xml&resultNumber=’.$resultNumber.”;

//retrieve the Xml with Simplexml_laod function and make them available as an Array
$results                = simplexml_load_file($searchUrlFeed);

Following a function that will help us to parse the results:

//function to parse the xml
function SearchResults($results){
foreach($results as $info_lyric){
print ‘<div>
<div><a href=”‘.$info_lyric->link.’”>’.$info_lyric->title.’</a> | <a href=”http://www.sharedj.com/discography-biography/’.urlencode($info_lyric->artist).’”>’.$info_lyric->artist.’</a> | Album: ‘.$info_lyric->album.’</div>
‘.$info_lyric->lyric.’</div>’;};
};

Here how you print the result in case there are results or not:

if($searchQuery != ” && !empty($results)){SearchResults($results);}elseif($searchQuery != ” && empty($results)){print’There are not result for the query <b>’.$searchQuery.’</b>’;};

We wanted to create an easy way to implement our search without knowing too much about programming, an easy copy and paste box. In order to do so we have made an Iframe/Ajax box. To implement it you can easily copy and paste the following code:


Below the search box (same than in the code):

Lyric search powered by Sharedj.com

If you require more flexibility and personalization you can use our Rest service that output raw Json/Xml, you will need a little customization but I will integrate seamlessly with your website.  For more info just contact us.

We are glad to inform that we have finally released the Search Api!

Thanks to this service anybody will be able to include a search box for music lyrics on their own website.

The service can be access trough REST, if you are interested drop us a line at: info [at] sharedj.com

A whole documentation will be very soon live, promise!!! ;)

In the meantime we present you some of the partners that are currently using our api:

We will update this list with new partners, come on board!

Many Xfactor fans have been left furies after Simon Cowell handed over Lucie vote to the public and whether he wanted or not he saved The Twins and make a very talented girl to leave!

Watching the show from the very beginning everybody remember how Simon hated Jedward and yet he has changed his mind and instead of ditching them he went to deadlock making public very angry.

Xfactor is changing the structure from singing competition to entertaining show! John and Edward are the most famous twins in Ireland making career on how to be a star with no singing talent, so maybe next year who knows…

Whatever happened has Mr Cowell really done something wrong?
Is it because of him lovely Lucie left?
If the public hate twins so much how they are still in the competition?

Let discuss!

There is a lot of controversy around Jedward. Some want them to leave the program desperately and some love them as they bring a lot of fun and craziness to the Saturday night Audience.
Many of us believe that they only got through cos of Luis Walsh country of origin but who cares? Crazy twins from Ireland who begun with cockiness and so hated by Simon Cowell are  getting better and better with every week. Tell me that you are not looking forward to watch them every week? We all know that Xfactor is a singing competition and they probably will not sell many albums in the future, but they were in bottom two and they were saved by the public vote and have made it to week 6. So then did you call for them?

Here the two twins in one of their performance :

Hi, we have been receiving loads of lyrics in the past months and we decided that it’s time to launch the website for beta testing.

So, search, listen and read music with us and don’t forget to post some missing lyrics!!!