Ready Player Me Assets API

Discover and retrieve avatar wearable assets — hair, outfits, headwear, glasses, facewear, footwear, beards, costumes, and custom assets — scoped to an application and optionally filtered to those viewable or usable by a specific user. Powers the wardrobe surface of the Ready Player Me Avatar Creator. RETIRED: the public platform was shut down on 2026-01-31 following Netflix's December 2025 acquisition, and api.readyplayer.me no longer resolves — this entry is a historical record of the contract, not a callable API.

Operations 4

GET /v1/assets List Assets #
GET /v1/assets/{assetId}.glb Get Asset GLB Model #
GET /v1/assets/{assetId}/thumbnail.png Get Asset Thumbnail #
GET /v1/phoenix-assets List Phoenix Assets #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/ready-player-me-assets-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

ready-player-me-assets-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Ready Player Me Assets API
  description: 'List, filter, and retrieve Ready Player Me assets — hair, outfits, headwear,

    glasses, facewear, footwear, beards, costumes, and custom assets — that can be

    equipped on avatars. Assets are scoped to an application (`X-APP-ID`) and can be

    further filtered to those visible or usable by a specific user.

    '
  version: '1.0'
  contact:
    name: Ready Player Me Developers
    url: https://docs.readyplayer.me/
servers:
- url: https://api.readyplayer.me
  description: Production
security:
- AppId: []
tags:
- name: Assets
  description: Asset discovery, filtering, and retrieval.
paths:
  /v1/assets:
    get:
      summary: List Assets
      operationId: listAssets
      tags:
      - Assets
      parameters:
      - name: type
        in: query
        schema:
          type: string
          enum:
          - hair
          - beard
          - outfit
          - shirt
          - top
          - bottom
          - footwear
          - headwear
          - facewear
          - glasses
          - costume
          - custom
          - baseModel
      - name: limit
        in: query
        schema:
          type: integer
          default: 16
      - name: page
        in: query
        schema:
          type: integer
          default: 1
      - name: gender
        in: query
        schema:
          type: string
          enum:
          - masculine
          - feminine
          - neutral
      - name: filter
        in: query
        schema:
          type: string
          enum:
          - viewable-by-user-and-app
          - usable-by-user-and-app
      - name: filterApplicationId
        in: query
        schema:
          type: string
      - name: filterUserId
        in: query
        schema:
          type: string
      responses:
        '200':
          description: A paginated list of assets.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AssetList'
  /v1/assets/{assetId}.glb:
    get:
      summary: Get Asset GLB Model
      operationId: getAssetGlb
      tags:
      - Assets
      parameters:
      - $ref: '#/components/parameters/AssetId'
      responses:
        '200':
          description: Binary glTF asset model.
          content:
            model/gltf-binary:
              schema:
                type: string
                format: binary
  /v1/assets/{assetId}/thumbnail.png:
    get:
      summary: Get Asset Thumbnail
      operationId: getAssetThumbnail
      tags:
      - Assets
      parameters:
      - $ref: '#/components/parameters/AssetId'
      responses:
        '200':
          description: Thumbnail image.
          content:
            image/png:
              schema:
                type: string
                format: binary
  /v1/phoenix-assets:
    get:
      summary: List Phoenix Assets
      operationId: listPhoenixAssets
      tags:
      - Assets
      description: List base-model and phoenix-tier assets for an application.
      parameters:
      - name: applicationId
        in: query
        required: true
        schema:
          type: string
      - name: type
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Phoenix asset list.
components:
  schemas:
    Asset:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        type:
          type: string
        gender:
          type: string
        iconUrl:
          type: string
        modelUrl:
          type: string
        applicationIds:
          type: array
          items:
            type: string
    AssetList:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/Asset'
        pagination:
          type: object
          properties:
            page:
              type: integer
            limit:
              type: integer
            totalPages:
              type: integer
            totalDocs:
              type: integer
  parameters:
    AssetId:
      name: assetId
      in: path
      required: true
      schema:
        type: string
  securitySchemes:
    AppId:
      type: apiKey
      in: header
      name: X-APP-ID