Switch to unified view

a/api/index.html b/api/index.html
...
...
6
</head>
6
</head>
7
7
8
<body>
8
<body>
9
<div id="site-header">
9
<div id="site-header">
10
    <div class="wrapper">
10
    <div class="wrapper">
11
        <a href="http://opensourceprojects.eu" id="header-logo"><img src="logo.png"></a>
11
        <a href="http://opensourceprojects.eu" id="header-logo"><img src="../logo.png"></a>
12
    </div>
12
    </div>
13
</div>
13
</div>
14
14
15
<div id="content_base">
15
<div id="content_base">
16
    <h1>PROSE platform API</h1>
16
    <h1>PROSE platform API</h1>
17
  &lt;<a href="..">Back to Index</a>
17
18
18
    <p>One of the topics that came up during the Q&amp;A for the <a title="PROSE Platform Webinar on Youtube" href="https://www.youtube.com/watch?v=GkXX1HAn86g" target="_blank">PROSE platform webinar</a> was the use of an API to interact with the <a title="Open Source Projects" href="http://opensourceprojects.eu">opensourceproject.eu</a> platform. We didn't get the chance to go over it then, so this is a quick technical post introducing the platform API along with some examples.</p>
19
    <p>One of the topics that came up during the Q&amp;A for the <a title="PROSE Platform Webinar on Youtube" href="https://www.youtube.com/watch?v=GkXX1HAn86g" target="_blank">PROSE platform webinar</a> was the use of an API to interact with the <a title="Open Source Projects" href="http://opensourceprojects.eu">opensourceproject.eu</a> platform. We didn't get the chance to go over it then, so this is a quick technical post introducing the platform API along with some examples.</p>
19
20
20
    <p>The PROSE platform is based on <a title="Allura at Apache.org" href="https://forge-allura.apache.org/p/allura">Allura</a>, the platform behind SourceForge, and provides the REST API described here. For starters the REST API is available under the path <strong>/rest/</strong> so for example if you want to access information about the project with path <strong>/p/osp/</strong>, you would make a GET request to <strong>/rest/p/osp/</strong>.
21
    <p>The PROSE platform is based on <a title="Allura at Apache.org" href="https://forge-allura.apache.org/p/allura">Allura</a>, the platform behind SourceForge, and provides the REST API described here. For starters the REST API is available under the path <strong>/rest/</strong> so for example if you want to access information about the project with path <strong>/p/osp/</strong>, you would make a GET request to <strong>/rest/p/osp/</strong>.
21
    All of the API calls return JSON objects, unless an error occurs (e.g. 404).</p>
22
    All of the API calls return JSON objects, unless an error occurs (e.g. 404).</p>