action dodo_get_nh_fossils_groups_fossil_group { label: "Single New Horizons fossil group" description: "Retrieve information about a specific fossil group in *Animal Crossing: New Horizons*." provider: dodo method: GET path: "/nh/fossils/groups/{fossil_group}" encoding: json input: { type: "object" properties: { "Accept-Version": { type: "string" } "X-API-KEY": { type: "string" format: "uuid" } fossil_group: { type: "string" } thumbsize: { type: "integer" } } required: ["Accept-Version", "X-API-KEY", "fossil_group"] additionalProperties: false } output: { type: "object" properties: { description: { type: "string" description: "A description of the fossil group." } name: { type: "string" description: "The name of the fossil group." } room: { type: "integer" description: "The room where the fossil group can be found in the museum's fossil section." } url: { type: "string" description: "Link to the respective Nookipedia article." } } } }