Discover/Fandom API
live

Fandom APIvalorant.fandom.com

Retrieve VALORANT cosmetic collection data from valorant.fandom.com: skin names, item types, weapons, editions, codenames, artwork URLs, and bundle pricing.

Endpoint health
verified 2h ago
list_collections
get_collection
2/2 passing latest checkself-healing
Endpoints
2
Updated
3h ago

What is the Fandom API?

This API exposes VALORANT cosmetic collection data from valorant.fandom.com across 2 endpoints, covering roughly 117 collection pages including bundles and battle pass sets. The get_collection endpoint returns every item listed in a collection — weapon skins, melee skins, and accessories — alongside infobox metadata like edition tier, release patch, codename, and full-resolution artwork image URLs. The list_collections endpoint pages through the full catalog alphabetically.

This call costs1 credit / call— charged only on success
Try it
Continuation token: the page title to start the listing from, taken unchanged from a previous response's next_from. Omitted = start of the category.
api.parse.bot/scraper/de3ebee1-c3bc-4202-a6fb-c47c783791e0/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/de3ebee1-c3bc-4202-a6fb-c47c783791e0/list_collections?from_title=KTAC+Collection' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 2 totalmissing one? ·

Lists cosmetic collection pages from the wiki's Cosmetic Collections category, in the wiki's alphabetical order. One page of the category (up to 200 category members, of which only collection pages are returned, typically ~117) per call; when has_more is true, pass next_from as from_title on the next call to continue. Each entry's page_title is the exact value get_collection accepts.

Input
ParamTypeDescription
from_titlestringContinuation token: the page title to start the listing from, taken unchanged from a previous response's next_from. Omitted = start of the category.
Response
{
  "type": "object",
  "fields": {
    "count": "integer, number of collections on this page",
    "has_more": "boolean, true when another page follows",
    "next_from": "string continuation token for from_title, or null on the last page",
    "collections": "array of {name, page_title}; page_title is the wiki page title to pass to get_collection"
  },
  "sample": {
    "data": {
      "count": 117,
      "has_more": true,
      "next_from": "KTAC Collection",
      "collections": [
        {
          "name": ".EXE Collection",
          "page_title": ".EXE Collection"
        },
        {
          "name": "Kuronami Collection",
          "page_title": "Kuronami Collection"
        }
      ]
    },
    "status": "success"
  }
}

About the Fandom API

Endpoints Overview

The list_collections endpoint pages through the wiki's Cosmetic Collections category in alphabetical order. Each call returns up to ~117 collection entries, with each entry containing a name and page_title. When has_more is true, pass the next_from string back as the from_title parameter to fetch the next page. This makes it straightforward to crawl the full catalog incrementally.

Collection Detail

The get_collection endpoint accepts a collection parameter (the wiki page title, with spaces or underscores). It returns the collection's name, edition (e.g. Exclusive, Premium, Select), codename, release_patch, battle_pass_act, cosmetic_types, page_url, and item_count. For battle pass collections, release_patch is null and battle_pass_act is populated; the reverse holds for store bundles.

Items Array

The items array within a get_collection response lists every cosmetic in page order. Each item carries name, item_type (Weapon Skin, Melee, or an accessory type), source, bundle, weapon (the base weapon name for Weapon Skin items), and battle_pass_tier (an integer for battle pass items, null otherwise). This structure makes it possible to filter by item type or weapon without additional parsing.

Coverage Notes

Data reflects what the wiki community has published for each collection page. Infobox fields like codename or bundle price text may be null on pages where the wiki has not populated them. Image URLs resolve to full-resolution artwork hosted on the fandom CDN and can be used directly in applications.

Reliability & maintenanceVerified

The Fandom API is a managed, monitored endpoint for valorant.fandom.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when valorant.fandom.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official valorant.fandom.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
2h ago
Latest check
2/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a searchable VALORANT skin database filtered by weapon type using the weapon field from get_collection.
  • Track which collection a specific skin belongs to by iterating list_collections and matching item names.
  • Display bundle artwork in a companion app using the full-resolution image URLs returned by get_collection.
  • Identify all battle pass cosmetics by checking battle_pass_act and battle_pass_tier fields.
  • Catalog edition tiers (Exclusive, Premium, Select) across the full collection catalog for pricing analysis.
  • Audit internal codenames across all collections by pulling the codename field from each get_collection response.
  • Enumerate all melee skins in the game by filtering items where item_type equals 'Melee'.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does valorant.fandom.com have an official developer API?+
Fandom offers a general-purpose MediaWiki-based API at https://valorant.fandom.com/api.php, but it returns raw wiki markup and requires significant parsing to extract structured cosmetic data. This Parse API returns clean, structured fields without that overhead.
What does get_collection return for a battle pass collection versus a store bundle?+
For store bundles, release_patch is populated and battle_pass_act is null. For battle pass collections, battle_pass_act is populated and release_patch is null. Individual items in battle pass collections also carry a battle_pass_tier integer indicating their tier position.
How does pagination work in list_collections?+
Each call returns up to ~117 collections (one page of the wiki category). If has_more is true, a next_from string is included. Pass that value as the from_title parameter in your next call to continue. When has_more is false and next_from is null, you have reached the end of the catalog.
Does the API return individual skin variant or level data (e.g. finisher animations, skin levels, variant colors)?+
Not currently. The API covers collection-level items including skin names, item types, base weapons, and artwork URLs, but does not break down individual upgrade levels, variant color options, or unlock tier details within a skin. You can fork this API on Parse and revise it to add an endpoint targeting individual skin pages for that detail.
Are skin prices or VP costs returned by the API?+
The API returns bundle price text from the infobox when the wiki has populated it, but individual item VP prices are not included in the items array. This reflects what the collection page itself exposes. You can fork this API on Parse and revise it to pull pricing from dedicated skin pages if those fields are available there.
Page content last updated . Spec covers 2 endpoints from valorant.fandom.com.
Related APIs in EntertainmentSee all →
wikia.com API
Extract structured data from Fandom (formerly Wikia) gaming wikis. Search pages, retrieve full page content, list category members, and convert wiki pages into organized guides with infoboxes, section breakdowns, and clean text.
wikia.org API
Search and retrieve detailed information about characters, episodes, lore, and other content from Fandom wikis across thousands of fan communities. Browse wiki categories, look up specific pages, and access structured data about your favorite franchises all in one place.
liquipedia.net API
Access comprehensive esports data from Liquipedia, the world's leading esports wiki. Retrieve match schedules, team rosters, player profiles, tournament results, and game-specific statistics across top titles including Valorant, Counter-Strike, League of Legends, and Dota 2.
gamepedia.com API
Search gaming wikis across Fandom to find guides, maps, strategies, and game information, then retrieve detailed page content in multiple formats along with images and metadata. Discover trending articles, browse categories, and navigate game-specific knowledge bases to get the gaming data you need.
wiki.rustclash.com API
Access Rust game items, skins, blueprints, and crafting data from the RustClash Wiki. Browse and search items by category, explore skin listings with market prices, and retrieve detailed stats including crafting recipes, repair costs, loot locations, and workbench blueprint tiers.
eldenring.wiki.fextralife.com API
Search and retrieve structured Elden Ring game information from the Fextralife Wiki, including weapons, enemies, locations, and lore. Access full article content with hierarchical sections, tables, and images, or search the complete article catalog by keyword.
aesthetics.fandom.com API
Explore thousands of design aesthetics from the Aesthetics Wiki by browsing the complete catalog or diving into detailed information about any specific aesthetic style. Discover the visual elements, inspirations, and characteristics that define each aesthetic movement to fuel your creative projects.
warframe.wiki API
Search for Warframe items and weapons to view their stats, crafting requirements, and mod information, while staying updated on current in-game events and patch notes. Get detailed information about gear, resources, and game updates all from one convenient source.