inside-verse-api

repo
Created Nov 2023
Original
HTML
Stars
2
Forks
0
Size
5.5 MB
Last Update
over 1 year ago

Step into the immersive world of the "Inside Job" series with the "InsideVerseAPI." This API provides seamless access to a treasure trove of quotes, dialogues, ...

README.md

Inside Verse API


Inside Verse API

Access the world of "Inside Job" through our API

Overview

The Inside Verse API opens up the vibrant universe of the "Inside Job" series, offering developers access to a rich collection of quotes and dialogues from the show's colorful characters. Whether you're building fan applications, looking for entertaining content, or seeking creative inspiration, our API provides a gateway to the unique humor and storytelling of "Inside Job".

Endpoints

CategoryMethodEndpointDescription
CharactersGET/characters/{id}Retrieve specific character details by ID.
GET/characters/{id}/episodesGet episodes featuring a specific character by ID.
GET/characters/randomFetch a random character.
GET/characters/{id}/quotesObtain quotes by a specific character ID.
GET/charactersList all characters.
OrganizationsGET/organizations/randomGet a random organization.
GET/organizations/{id}Retrieve specific organization details by ID.
GET/organizationsList all organizations.
LocationsGET/locations/{id}/technologiesGet technologies available at a specific location by ID.
GET/locationsList all locations.
GET/locations/{id}Retrieve specific location details by ID.
ConspiraciesGET/conspiracies/{id}/charactersList characters involved in a specific conspiracy by ID.
GET/conspiracies/{id}Retrieve specific conspiracy details by ID.
GET/conspiraciesList all conspiracies.
TechnologiesGET/technologies/{id}Retrieve specific technology details by ID.
GET/technologiesList all technologies.
GET/technologies/randomFetch a random technology.
EpisodesGET/episodes/{id}Retrieve specific episode details by ID.
GET/episodesList all episodes.
QuotesGET/quotes/{id}Retrieve specific quote details by ID.
GET/quotesList all quotes.
GET/quotes/randomFetch a random quote.
PingGET/pingCheck the API's availability and response.

Quick Start

To get started with the Inside Verse API, you'll need to sign up for a free RapidAPI account and subscribe to the API. Once you have your API key, you can start making requests to the API endpoints.

JavaScript Example

const url = "https://inside-verse-api.p.rapidapi.com/characters/random"; const options = { method: "GET", headers: { "x-rapidapi-key": "YOUR_RAPIDAPI_KEY", "x-rapidapi-host": "inside-verse-api.p.rapidapi.com", }, }; async function fetchRandomCharacter() { try { const response = await fetch(url, options); const result = await response.json(); console.log(result); } catch (error) { console.error("Error:", error); } } fetchRandomCharacter();

cURL Example

curl --request GET \ --url https://inside-verse-api.p.rapidapi.com/characters/random \ --header 'x-rapidapi-host: inside-verse-api.p.rapidapi.com' \ --header 'x-rapidapi-key: YOUR_RAPIDAPI_KEY'

Learn More

For detailed documentation, endpoint descriptions, and more examples, visit our RapidAPI page

Support the Project

If you find this API useful, consider supporting its development:

buymeacoffee.com/benoitpetit


© 2023 Inside Verse API. All rights reserved.

This project is not affiliated with or endorsed by the creators of "Inside Job". All trademarks and copyrights belong to their respective owners.

Made with ❤️ by benoitpetit.dev

Repository Topics
#api#json-server