diff --git a/lib/node_modules/@stdlib/constants/float32/apery/README.md b/lib/node_modules/@stdlib/constants/float32/apery/README.md
new file mode 100644
index 000000000000..935f72f74751
--- /dev/null
+++ b/lib/node_modules/@stdlib/constants/float32/apery/README.md
@@ -0,0 +1,160 @@
+
+
+# FLOAT32_APERY
+
+> [Apéry's constant][apery-constant].
+
+
+
+[Apéry's constant][apery-constant] is defined as
+
+
+
+```math
+\zeta(3) = \sum_{n=1}^\infty \frac{1}{n^3} = \lim_{n\to\infty} \biggl(\frac{1}{1^3} + \frac{1}{2^3} + \cdots + \frac{1}{n^3}\biggr)
+```
+
+
+
+
+
+where `ζ(s)` is the [Riemann zeta function][@stdlib/math/base/special/riemann-zeta].
+
+
+
+
+
+
+
+## Usage
+
+```javascript
+var FLOAT32_APERY = require( '@stdlib/constants/float32/apery' );
+```
+
+#### FLOAT32_APERY
+
+[Apéry's constant][apery-constant].
+
+```javascript
+var bool = ( FLOAT32_APERY === 1.202056884765625 );
+// returns true
+```
+
+
+
+
+
+
+
+## Examples
+
+
+
+
+
+```javascript
+var FLOAT32_APERY = require( '@stdlib/constants/float32/apery' );
+
+console.log( FLOAT32_APERY );
+// => 1.202056884765625
+```
+
+
+
+
+
+
+
+* * *
+
+
+
+## C APIs
+
+
+
+
+
+
+
+
+
+
+
+
+
+### Usage
+
+```c
+#include "stdlib/constants/float32/apery.h"
+```
+
+#### STDLIB_CONSTANT_FLOAT32_APERY
+
+Macro for [Apéry's constant][apery-constant].
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+[apery-constant]: https://en.wikipedia.org/wiki/Ap%C3%A9ry%27s_constant
+
+[@stdlib/math/base/special/riemann-zeta]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/special/riemann-zeta
+
+
+
+
diff --git a/lib/node_modules/@stdlib/constants/float32/apery/docs/img/equation_apery_constant.svg b/lib/node_modules/@stdlib/constants/float32/apery/docs/img/equation_apery_constant.svg
new file mode 100644
index 000000000000..9811eeae730b
--- /dev/null
+++ b/lib/node_modules/@stdlib/constants/float32/apery/docs/img/equation_apery_constant.svg
@@ -0,0 +1,98 @@
+
\ No newline at end of file
diff --git a/lib/node_modules/@stdlib/constants/float32/apery/docs/repl.txt b/lib/node_modules/@stdlib/constants/float32/apery/docs/repl.txt
new file mode 100644
index 000000000000..31da95e01716
--- /dev/null
+++ b/lib/node_modules/@stdlib/constants/float32/apery/docs/repl.txt
@@ -0,0 +1,12 @@
+
+{{alias}}
+ Apéry's constant.
+
+ Examples
+ --------
+ > {{alias}}
+ 1.202056884765625
+
+ See Also
+ --------
+
diff --git a/lib/node_modules/@stdlib/constants/float32/apery/docs/types/index.d.ts b/lib/node_modules/@stdlib/constants/float32/apery/docs/types/index.d.ts
new file mode 100644
index 000000000000..1e4b49a87ee2
--- /dev/null
+++ b/lib/node_modules/@stdlib/constants/float32/apery/docs/types/index.d.ts
@@ -0,0 +1,33 @@
+/*
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+// TypeScript Version: 4.1
+
+/**
+* Apéry's constant.
+*
+* @example
+* var apery = FLOAT32_APERY;
+* // returns 1.202056884765625
+*/
+declare const FLOAT32_APERY: number;
+
+
+// EXPORTS //
+
+export = FLOAT32_APERY;
diff --git a/lib/node_modules/@stdlib/constants/float32/apery/docs/types/test.ts b/lib/node_modules/@stdlib/constants/float32/apery/docs/types/test.ts
new file mode 100644
index 000000000000..3f28270f4f49
--- /dev/null
+++ b/lib/node_modules/@stdlib/constants/float32/apery/docs/types/test.ts
@@ -0,0 +1,28 @@
+/*
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+import FLOAT32_APERY = require( './index' );
+
+
+// TESTS //
+
+// The export is a number...
+{
+ // eslint-disable-next-line @typescript-eslint/no-unused-expressions
+ FLOAT32_APERY; // $ExpectType number
+}
diff --git a/lib/node_modules/@stdlib/constants/float32/apery/examples/index.js b/lib/node_modules/@stdlib/constants/float32/apery/examples/index.js
new file mode 100644
index 000000000000..722da253e671
--- /dev/null
+++ b/lib/node_modules/@stdlib/constants/float32/apery/examples/index.js
@@ -0,0 +1,24 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+var FLOAT32_APERY = require( './../lib' );
+
+console.log( FLOAT32_APERY );
+// => 1.202056884765625
diff --git a/lib/node_modules/@stdlib/constants/float32/apery/include/stdlib/constants/float32/apery.h b/lib/node_modules/@stdlib/constants/float32/apery/include/stdlib/constants/float32/apery.h
new file mode 100644
index 000000000000..3604fd7e98e0
--- /dev/null
+++ b/lib/node_modules/@stdlib/constants/float32/apery/include/stdlib/constants/float32/apery.h
@@ -0,0 +1,27 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+#ifndef STDLIB_CONSTANTS_FLOAT32_APERY_H
+#define STDLIB_CONSTANTS_FLOAT32_APERY_H
+
+/**
+* Macro for Apéry's constant.
+*/
+#define STDLIB_CONSTANT_FLOAT32_APERY 1.202056903159594285f
+
+#endif // !STDLIB_CONSTANTS_FLOAT32_APERY_H
diff --git a/lib/node_modules/@stdlib/constants/float32/apery/lib/index.js b/lib/node_modules/@stdlib/constants/float32/apery/lib/index.js
new file mode 100644
index 000000000000..34507696ee7e
--- /dev/null
+++ b/lib/node_modules/@stdlib/constants/float32/apery/lib/index.js
@@ -0,0 +1,53 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+/**
+* Apéry's constant.
+*
+* @module @stdlib/constants/float32/apery
+* @type {number}
+*
+* @example
+* var FLOAT32_APERY = require( '@stdlib/constants/float32/apery' );
+* // returns 1.202056884765625
+*/
+
+// MODULES //
+
+var float64ToFloat32 = require( '@stdlib/number/float64/base/to-float32' );
+
+
+// MAIN //
+
+/**
+* Apéry's constant.
+*
+* @constant
+* @type {number}
+* @default 1.202056884765625
+* @see [OEIS]{@link https://oeis.org/A002117}
+* @see [Wikipedia]{@link https://en.wikipedia.org/wiki/Ap%C3%A9ry%27s_constant}
+*/
+var FLOAT32_APERY = float64ToFloat32( 1.2020569031595942 );
+
+
+// EXPORTS //
+
+module.exports = FLOAT32_APERY;
diff --git a/lib/node_modules/@stdlib/constants/float32/apery/manifest.json b/lib/node_modules/@stdlib/constants/float32/apery/manifest.json
new file mode 100644
index 000000000000..844d692f6439
--- /dev/null
+++ b/lib/node_modules/@stdlib/constants/float32/apery/manifest.json
@@ -0,0 +1,36 @@
+{
+ "options": {},
+ "fields": [
+ {
+ "field": "src",
+ "resolve": true,
+ "relative": true
+ },
+ {
+ "field": "include",
+ "resolve": true,
+ "relative": true
+ },
+ {
+ "field": "libraries",
+ "resolve": false,
+ "relative": false
+ },
+ {
+ "field": "libpath",
+ "resolve": true,
+ "relative": false
+ }
+ ],
+ "confs": [
+ {
+ "src": [],
+ "include": [
+ "./include"
+ ],
+ "libraries": [],
+ "libpath": [],
+ "dependencies": []
+ }
+ ]
+}
diff --git a/lib/node_modules/@stdlib/constants/float32/apery/package.json b/lib/node_modules/@stdlib/constants/float32/apery/package.json
new file mode 100644
index 000000000000..24b5fae328ed
--- /dev/null
+++ b/lib/node_modules/@stdlib/constants/float32/apery/package.json
@@ -0,0 +1,68 @@
+{
+ "name": "@stdlib/constants/float32/apery",
+ "version": "0.0.0",
+ "description": "Apéry's constant.",
+ "license": "Apache-2.0",
+ "author": {
+ "name": "The Stdlib Authors",
+ "url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
+ },
+ "contributors": [
+ {
+ "name": "The Stdlib Authors",
+ "url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
+ }
+ ],
+ "main": "./lib",
+ "directories": {
+ "doc": "./docs",
+ "example": "./examples",
+ "include": "./include",
+ "lib": "./lib",
+ "test": "./test"
+ },
+ "types": "./docs/types",
+ "scripts": {},
+ "homepage": "https://github.com/stdlib-js/stdlib",
+ "repository": {
+ "type": "git",
+ "url": "git://github.com/stdlib-js/stdlib.git"
+ },
+ "bugs": {
+ "url": "https://github.com/stdlib-js/stdlib/issues"
+ },
+ "dependencies": {},
+ "devDependencies": {},
+ "engines": {
+ "node": ">=0.10.0",
+ "npm": ">2.7.0"
+ },
+ "os": [
+ "aix",
+ "darwin",
+ "freebsd",
+ "linux",
+ "macos",
+ "openbsd",
+ "sunos",
+ "win32",
+ "windows"
+ ],
+ "keywords": [
+ "stdlib",
+ "stdmath",
+ "constant",
+ "const",
+ "mathematics",
+ "math",
+ "apery",
+ "number theory",
+ "riemann",
+ "zeta",
+ "ieee754",
+ "precision",
+ "floating-point",
+ "float",
+ "float32"
+ ]
+}
diff --git a/lib/node_modules/@stdlib/constants/float32/apery/test/test.js b/lib/node_modules/@stdlib/constants/float32/apery/test/test.js
new file mode 100644
index 000000000000..4b0af7f9e233
--- /dev/null
+++ b/lib/node_modules/@stdlib/constants/float32/apery/test/test.js
@@ -0,0 +1,38 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+// MODULES //
+
+var tape = require( 'tape' );
+var FLOAT32_APERY = require( './../lib' );
+
+
+// TESTS //
+
+tape( 'main export is a number', function test( t ) {
+ t.ok( true, __filename );
+ t.strictEqual( typeof FLOAT32_APERY, 'number', 'main export is a number' );
+ t.end();
+});
+
+tape( 'the exported value is a single-precision floating-point number equal to 1.202056884765625', function test( t ) {
+ t.equal( FLOAT32_APERY, 1.202056884765625, 'returns 1.202056884765625' );
+ t.end();
+});