Docs / Bob-omb

Important Info

This API lets you access all the announcements we've made for the Wii Shop Channel.

Table of Contents

The shown content is only limited to 4 entries, and shows the latest announcement as the first entry. You can determine which post is the latest by checking the ID. Unfortunately, there's no way to show old announcements.

Explanation

To retrieve the data, make a GET request to the following endpoint: http://api.ftolnks.xyz/bobomb/Info

The data is returned in JSON format. Each entry in the response represents an announcement and includes the following fields:

  • id: A unique identifier for the announcement.
  • name: The title of the announcement.
  • text: The content of the announcement.

Example

To fetch and display the announcements using PHP, you can use the following snippet:

PHP
<?php
$BobombAPI 
'http://api.ftolnks.xyz/bobomb/Info';
$getdata file_get_contents($BobombAPI);
$posts json_decode($getdatatrue);
?>

<ul>
<?php foreach ($posts as $post): ?>
  <li><strong><?= htmlspecialchars($post['name']) ?></strong>: <?= htmlspecialchars($post['text']) ?></li>
<?php endforeach; ?>
</ul>

Real-Time Example

For a live example, you can see how the data appears in real-time here:

  • Another test card: Title.
  • Bob-omb by LaunchShop: If you got this message, that means you successfully implemented the Bob-omb API!