<p>When reverting a changeset (e.g., using the JOSM plugin <code>reverter</code>), one needs to obtain a large number of objects in a specific version. At the moment, those are obtained sequentially one by one:</p>

<pre><code>GET https://api.openstreetmap.org/api/0.6/node/618158454/6
GET https://api.openstreetmap.org/api/0.6/node/223240985/18
GET https://api.openstreetmap.org/api/0.6/node/1341712258/2
GET https://api.openstreetmap.org/api/0.6/node/674055923/7
GET https://api.openstreetmap.org/api/0.6/node/31446843/26
</code></pre>

<p>To improve performance, it would be great to obtain them in a single call:</p>

<pre><code>GET https://api.openstreetmap.org/api/0.6/nodes?nodes=618158454/6,223240985/18,1341712258/2,674055923/7,31446843/26
</code></pre>

<p>Would it be acceptable to enhance <code>node_controller#nodes</code> with this feature? Depending on whether the version is present or not, either a <code>Node</code> or an <code>OldNode</code> would be fetched.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">—<br>Reply to this email directly or <a href="https://github.com/openstreetmap/openstreetmap-website/issues/1067">view it on GitHub</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/ABWnLeLZWsyHiwjStjw_c2njtpiyC3U9ks5o5ALzgaJpZM4GJ9i2.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/openstreetmap/openstreetmap-website/issues/1067"></link>
  <meta itemprop="name" content="View Issue"></meta>
</div>
<meta itemprop="description" content="View this Issue on GitHub"></meta>
</div>