PAPIProxyBridge
🟡 Updated this yearPreview

🔍 Analysis
- 👍 0.2% endorsement rate
- 🏆 #13 of 48 bungeecord mods in this game by downloads
📋 About This Mod
<center> <img src="https://thread-assets.william278.net/papiproxybridge_header.png" /> <b><a href="http://github.com/WiIIiam278/PAPIProxyBridge">GitHub</a></b> — <b><a href="https://discord.com/invite/tVYhJfyDWG">Discord</a></b> </center> <br/> PAPIProxyBridge is a library bridge plugin you install on both your backend and proxy servers that allows proxy plugins to format text with PlaceholderAPI placeholders. ## For server owners This is a library plugin intended for use with plugins that implement its API. There is nothing to configure. Install the latest version of the plugin alongside the (https://www.spigotmc.org/resources/placeholderapi.6245/) on your Spigot (1.16.5+) or the (https://placeholders.pb4.eu/) on your Fabric (1.19.3+) server, then install the plugin on your BungeeCord or Velocity proxy server. Note this plugin is not a replacement for PlaceholderAPI. You still need to install PlaceholderAPI on your Spigot/Fabric server. ## For developers PAPIProxyBridge exposes a cross-platform API to let you format text with PlaceholderAPI placeholders. <details> <summary>Adding the library to your project</summary> PAPIProxyBridge is available on `repo.william278.net` ((https://repo.william278.net/javadoc/releases/net/william278/papiproxybridge/latest)). First, add the maven repository to your `build.gradle`: ```groovy repositories { maven { url 'https://repo.william278.net/releases/' } } ``` Then add the dependency: ```groovy dependencies { implementation 'net.william278:papiproxybridge:1.6' } ``` </details> <details> <summary>Example usage</summary> The `PlaceholderAPI` class exposes the API for formatting placeholders. At the moment, only singleton non-bracketed placeholders are supported (more in the future). Get an instance of the class with PlaceholderAPI.getInstance(), then use the `#formatPlaceholders` method to format a string with placeholders on a player (specified with UUID for cross-platform simplicity). The method returns a (https://www.baeldung.com/java-completablefuture) (since we don't want to lock threads while the proxy networks with players on the backend) that you can use to accept the formatted string. ```java // Format a string with placeholders final PlaceholderAPI api = PlaceholderAPI.createInstance(); final UUID player = player.getUniqueId(); api.formatPlaceholders("Hello %player_name%!", player).thenAccept(formatted -> { player.sendMessage(formatted); }); ``` Never invoke `#join()` on calls to `#formatPlaceholders`; this is unsafe. PAPIProxyBridge caches resolved requests for 30000 milliseconds (30 seconds), to avoid causing excessive traffic over your server's network channels. You can adjust how long to cache requests for using the `PlaceholderAPI#setCacheExpiry(long)` method. There also exists `#formatComponentPlaceholders`. This method allows you to supply a string containing placeholders and receive an adventure component containing the formatted text, which may contain formatting and chat events. </details>
GitHub — Discord
PAPIProxyBridge is a library bridge plugin you install on both your backend and proxy servers that allows proxy plugins to format text with PlaceholderAPI placeholders.
## For server owners This is a library plugin intended for use with plugins that implement its API. There is nothing to configure.
Install the latest version of the plugin alongside the (https://www.spigotmc.org/resources/placeholderapi. 6245/) on your Spigot (1. 16. 5+) or the (https://placeholders.pb4.eu/) on your Fabric (1. 19. 3+) server, then install the plugin on your BungeeCord or Velocity proxy server.
Note this plugin is not a replacement for PlaceholderAPI. You still need to install PlaceholderAPI on your Spigot/Fabric server.
## For developers PAPIProxyBridge exposes a cross-platform API to let you format text with PlaceholderAPI placeholders.
Adding the library to your project
PAPIProxyBridge is available on `repo.william278.net` ((https://repo.william278.net/javadoc/releases/net/william278/papiproxybridge/latest)). First, add the maven repository to your `build.gradle`: ```groovy repositories { maven { url 'https://repo.william278.net/releases/' } } ```
Then add the dependency: ```groovy dependencies { implementation 'net.william278:papiproxybridge:1. 6' } ```
Example usage
The `PlaceholderAPI` class exposes the API for formatting placeholders. At the moment, only singleton non-bracketed placeholders are supported (more in the future).
Get an instance of the class with PlaceholderAPI.getInstance(), then use the `#formatPlaceholders` method to format a string with placeholders on a player (specified with UUID for cross-platform simplicity).
The method returns a (https://www.baeldung.com/java-completablefuture) (since we don't want to lock threads while the proxy networks with players on the backend) that you can use to accept the formatted string.
```java // Format a string with placeholders final PlaceholderAPI api = PlaceholderAPI.createInstance(); final UUID player = player.getUniqueId(); api.formatPlaceholders("Hello %player_name%!", player).thenAccept(formatted -> { player.sendMessage(formatted); }); ```
Never invoke `#join()` on calls to `#formatPlaceholders`; this is unsafe.
PAPIProxyBridge caches resolved requests for 30000 milliseconds (30 seconds), to avoid causing excessive traffic over your server's network channels. You can adjust how long to cache requests for using the `PlaceholderAPI#setCacheExpiry(long)` method.
There also exists `#formatComponentPlaceholders`. This method allows you to supply a string containing placeholders and receive an adventure component containing the formatted text, which may contain formatting and chat events.
📊 Mod Details
- Game
- Minecraft Plugins
- Author
- WiIIiam278
- Version
- 1.8.4-72367f6
- Downloads
- 48,436
- Endorsements
- 88
- Category
- bungeecord
- Created
- 3/7/2023
- Updated
- 7/16/2026
- Game Versions
- 1.17.1, 1.18, 1.18.1, 1.18.2, 1.19
- Tags
- library
🔧 How to Install Minecraft Plugins Mods
Download from Modrinth. Use Prism Launcher or drop into your mods folder.
📖 Full step-by-step install guide for Minecraft Plugins →
Visit the official mod page for specific installation instructions for this mod.
🎮 Need cheat codes or console commands? Check ur gaming wiki for Minecraft Plugins commands, item IDs, and more.
❓ Frequently Asked Questions
Which Minecraft Plugins versions does PAPIProxyBridge support?
The author lists 1.17.1, 1.18, 1.18.1, 1.18.2, 1.19, 1.19.1. Other versions may work but are untested by the author.
What is the latest version of PAPIProxyBridge?
Version 1.8.4-72367f6, published 2026-07-16 with 48,436 downloads recorded at the source.
Keep browsing — more Minecraft Plugins mods await