diff --git a/frontend/src/app/docs/api-docs/api-docs.component.html b/frontend/src/app/docs/api-docs/api-docs.component.html
index d25a60653..91d10a72f 100644
--- a/frontend/src/app/docs/api-docs/api-docs.component.html
+++ b/frontend/src/app/docs/api-docs/api-docs.component.html
@@ -34,7 +34,8 @@
-
Reference for the {{ network.val === '' ? 'Bitcoin' : network.val.charAt(0).toUpperCase() + network.val.slice(1) }} API service.
+
Reference for the {{ network.val === '' ? 'Bitcoin' : network.val.charAt(0).toUpperCase() + network.val.slice(1) }} API service.
+
Note that we enforce rate limits. If you exceed these limits, you will get a polite error encouraging you to run your own Mempool instance. If you repeatedly exceed the limits, you may be banned from accessing the service altogether.
-1 )">{{ item.title }}
diff --git a/frontend/src/app/docs/api-docs/api-docs.component.scss b/frontend/src/app/docs/api-docs/api-docs.component.scss
index 4841601ab..1729a7dbd 100644
--- a/frontend/src/app/docs/api-docs/api-docs.component.scss
+++ b/frontend/src/app/docs/api-docs/api-docs.component.scss
@@ -199,6 +199,10 @@ h3 {
@media (max-width: 992px) {
+ h3 {
+ margin: 1.5rem 0 0 0;
+ }
+
.hide-on-mobile {
display: none;
}
@@ -237,6 +241,10 @@ h3 {
opacity: 0;
transition: 0.5s opacity ease;
}
+
+ .api-note {
+ font-size: 0.85rem;
+ }
}
@media (min-width: 992px) {