UNPKG

pterodactyl-api-wrapper

Version:

[![NPM version](https://img.shields.io/npm/v/pterodactyl-api-wrapper.svg)](https://npmjs.com/package/pterodactyl-api-wrapper) [![License](https://img.shields.io/npm/l/pterodactyl-api-wrapper.svg)](LICENSE)

38 lines (36 loc) 1.07 kB
import ApplicationAPICall from "../../../../functions/createAppCall"; export interface Response { object: string, attributes: { id: number, uuid: string, author: string, name: string, description: string, created_at: string, updated_at: string } } /** * Retrieves details of a specific nest. * * @param {Object} options - API call options. * @param {string} options.apiKey - The API key for authentication. * @param {string} options.panel - The base URL of the Pterodactyl panel. * @param {number} options.nest_id - The ID of the nest. * @returns {Promise<Response>} - API response containing nest details. * * @throws {Error} - Throws an error if the API request fails. */ export default async function nestDetails(options: { apiKey: string; panel: string; nest_id: number; }): Promise<Response> { return ApplicationAPICall({ apiKey: options.apiKey, panel: options.panel, method: "GET", endpoint: `nests/${options.nest_id}` }); }