diff --git a/lib/node_modules/@stdlib/math/base/special/acsch/README.md b/lib/node_modules/@stdlib/math/base/special/acsch/README.md
index f2a06ea40837..9891994023b0 100644
--- a/lib/node_modules/@stdlib/math/base/special/acsch/README.md
+++ b/lib/node_modules/@stdlib/math/base/special/acsch/README.md
@@ -83,6 +83,91 @@ for ( i = 0; i < x.length; i++ ) {
+
+
+* * *
+
+
+
+## C APIs
+
+
+
+
+
+
+
+
+
+
+
+### Usage
+
+```c
+#include "stdlib/math/base/special/acsch.h"
+```
+
+#### stdlib_base_acsch( x )
+
+Computes the [hyperbolic arccosecant][inverse-hyperbolic-functions] of `x`.
+
+```c
+double out = stdlib_base_acsch( 2.0 );
+// returns ~0.5493
+```
+
+The function accepts the following arguments:
+
+- **x**: `[in] double` input value.
+
+```c
+double stdlib_base_acsch( const double x );
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+### Examples
+
+```c
+#include "stdlib/math/base/special/acsch.h"
+#include
+
+int main( void ) {
+ const double x[] = { 1.0, 1.44, 1.89, 2.33, 2.78, 3.22, 3.67, 4.11, 4.56, 5.0 };
+
+ double v;
+ int i;
+ for ( i = 0; i < 10; i++ ) {
+ v = stdlib_base_acsch( x[ i ] );
+ printf( "acsch(%lf) = %lf\n", x[ i ], v );
+ }
+}
+```
+
+
+
+
+
+
+
+
+