mirror of
https://repo.getmonero.org/AnonDev/xmrmemes.git
synced 2024-12-22 14:15:08 -05:00
821fb9b1ed
Update the payment code so everything is working now Improve DB structure Improve design Add API Validate XMR Address upon registration And Much More... Still Need to work on: - SEO - Dropdown in menu (bug, not dropping down)
24 lines
742 B
PHP
24 lines
742 B
PHP
@extends('layouts.app')
|
|
|
|
@section('content')
|
|
<div class="container">
|
|
<div class="row justify-content-center">
|
|
<div class="col-md-12">
|
|
<h1 class="text-center">API Documentation</h1>
|
|
<p class="lead mt-3 text-center">
|
|
Memes Endpoint: <code>{{ $data['memes_endpoint'] }}</code>
|
|
</p>
|
|
<p class="text-center">
|
|
API is experimental. Breaking changes may occur in the future.
|
|
</p>
|
|
<p class="mb-5 text-center">
|
|
Rate Limit: 60 Request Per Hour
|
|
</p>
|
|
<code>
|
|
<pre class="bg-light p-1">{{ $data['memes_example'] }}</pre>
|
|
</code>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|