About Cofundos
Syndication and Programmatic Access
- Logo buttons
- ATOM feeds
- JSON feeds
- Embedded HTML
- RDF, Linked Data and SPARQL endpoint
- REST API
- Embedding Cofundos in your Layout
Logo Buttons
Feel free to integrate links to Cofundos from your web site.
-
Logo PNG (100x26 pixel)

<a href="http://www.cofundos.org"><img src="http://www.cofundos.org/images/logo-100x26.png" style="border:0px;" alt="Cofundos - community innovation and funding of open source" /></a> -
Logo PNG (150x39 pixel)

<a href="http://www.cofundos.org"><img src="http://www.cofundos.org/images/logo-150x39.png" style="border:0px;" alt="Cofundos - community innovation and funding of open source" /></a> -
Logo PNG (200x52 pixel)

<a href="http://www.cofundos.org"><img src="http://www.cofundos.org/images/logo-200x52.png" style="border:0px;" alt="Cofundos - community innovation and funding of open source" /></a>
Atom feeds
An ATOM feed of Cofundos projects is available at: http://www.cofundos.org/feed.php. The following parameters can be set in order to filter and order the feed entries:
| Parameter | Description | Example |
|---|---|---|
| order | The feed can be ordered by one of the following attributes:
| http://www.cofundos.org/feed.php?order=bidamount%20DESC |
| tag | Show only projects which are tagged with a certain tag. | http://www.cofundos.org/feed.php?tag=PHP |
| search | Show only projects which contain a certain keyword in the title or description. | http://www.cofundos.org/feed.php?search=storage |
| user_id | Show only projects of a certain user. | http://www.cofundos.org/feed.php?user_id=10 |
| project_id | Show only a specific project. | http://www.cofundos.org/feed.php?project_id=10 |
| status | Show only projects of a certain status (i.e. 'open', 'voting', 'development', 'finished', 'failed'). | http://www.cofundos.org/feed.php?status=open |
| start | Show projects starting from sequential position (the default is to start from the begining). | http://www.cofundos.org/feed.php?start=10 |
| results | Show only a certain number of result (the default is to show 10 results, the maximum is 100). | http://www.cofundos.org/feed.php?results=25 |
JSON feeds
An JSON feed of Cofundos projects is available at: http://www.cofundos.org/json.php. The possible parameters are identical to the ones of the ATOM feed.
Embedded HTML
Adding the parameter 'output=html' to the JSON feed will output a small JavaScript function, which converts the JSON feed into HTML, so it can be directly embedded into any HTML page without any programming. The following line of HTML code, for example, will embed the latest Cofundos projects into your HTML page:
<script src="http://www.cofundos.org/json.php?output=html&results=3" type="text/javascript"></script>
It will look as follows:
Of course, you can apply all the filter and sorting operations (as described in the ATOM section above) just by adding the corresponding parameters to the URL of the JSON output script. The output can be easily adopted to your needs, by defining a JavaScript function "CofundosOutput(r)" before embedding the code:
<script language='javascript'>
function CofundosOutput(r) {
document.write('<div><a href="http://www.cofundos.org/project.php?id='+r.id+'">'+
r.title+'</a> ('+r.created+' by '+r.nickname+')<br />Tags: '+r.tags+' Current bids: '+r.bids+' (€'+r.bidamount+')'+'</div>');
}
</script>
<script src="http://www.cofundos.org/json.php?output=html" type="text/javascript"></script>
RDF, Linked Data and SPARQL endpoint
The Cofundos RDF export in N3 serialization is available at: http://www.cofundos.org/n3.php. The dataset is updated approximately every 10 hours.
Linked Data and SPARQL endpoints are currently under development.
REST API
The Cofundos REST API is currently under development. Please send email to rest-api@cofundus.org if you would like to beta-test the API
