diff --git a/source/api_details.html.erb b/source/api_details.html.erb
index a6c621dbb..ecb82da2b 100644
--- a/source/api_details.html.erb
+++ b/source/api_details.html.erb
@@ -1 +1,55 @@
<%= api.name %>
+
+<% if api.url.present? %>
+ Endpoint URL:
+
+ - <%= link_to(api.url, api.url) %>
+
+<% end %>
+
+<% if api.documentation.present? %>
+ Documentation URL:
+
+ - <%= link_to(api.documentation, api.documentation) %>
+
+<% end %>
+
+<% if api.maintainer.present? %>
+ Contact:
+
+ - <%= escape_html(api.maintainer) %>
+
+<% end %>
+
+<% if api.description.present? %>
+ Description:
+ <%= escape_html(api.description) %>
+<% end %>
+
+<% if api.license.present? %>
+ License:
+
+ - <%= escape_html(api.license) %>
+
+<% end %>
+
+<% if api.area_served.present? %>
+ Geographic Area:
+
+ - <%= escape_html(api.area_served) %>
+
+<% end %>
+
+<% if api.start_date.present? %>
+ Start Date:
+
+ - <%= api.start_date.to_formatted_s(:iso8601) %>
+
+<% end %>
+
+<% if api.end_date.present? %>
+ Expiry Date:
+
+ - <%= api.end_date.to_formatted_s(:iso8601) %>
+
+<% end %>