Story Protocol IPAssets API

The IPAssets API from Story Protocol — 4 operation(s) for ipassets.

Operations 4

POST /api/v3/assets List IPAssets
POST /api/v3/assets/edges List IP Edges
GET /api/v3/assets/{assetId} Get an IPAsset
GET /api/v3/assets/{assetId}/metadata Get metadata for an IPAsset

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/story-protocol-ipassets-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

story-protocol-ipassets-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Story Protocol API Reference Collections IP Assets API
  version: v1
  contact: {}
servers:
- url: https://api.storyapis.com
  description: Production server
tags:
- name: IPAssets
paths:
  /api/v3/assets:
    post:
      description: Retrieve a paginated, filtered list of IPAssets
      parameters:
      - description: API Key
        in: header
        name: X-Api-Key
        required: true
        type: string
      - description: Chain Destination
        in: header
        name: X-Chain
        required: true
        type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/github_com_storyprotocol_protocol-api_api_internal_models_protocolv2.IpAssetRequestBody'
        description: Query Parameters must be wrapped in options object (though it can be left empty) ❗️ 👀. OrderBy must be blockNumber, descendantCount or empty.
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/github_com_storyprotocol_protocol-api_api_internal_models_protocolv3.IPAssetsResponse'
          description: OK
      security:
      - ApiKeyAuth: []
      summary: List IPAssets
      tags:
      - IPAssets
  /api/v3/assets/edges:
    post:
      description: Retrieve a paginated, filtered list of IP Edges
      parameters:
      - description: API Key
        in: header
        name: X-Api-Key
        required: true
        type: string
      - description: Chain Destination
        in: header
        name: X-Chain
        required: true
        type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/github_com_storyprotocol_protocol-api_api_internal_models_protocolv2.IpAssetEdgeRequestBody'
        description: Query Parameters must be wrapped in options object (though it can be left empty) ❗️ 👀. OrderBy must be blockNumber or empty.
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/github_com_storyprotocol_protocol-api_api_internal_models_protocolv1.IPAssetEdgeResponse'
          description: OK
      security:
      - ApiKeyAuth: []
      summary: List IP Edges
      tags:
      - IPAssets
  /api/v3/assets/{assetId}:
    get:
      description: Retrieve an IPAsset
      parameters:
      - description: Asset ID
        in: path
        name: assetId
        required: true
        type: string
      - description: API Key
        in: header
        name: X-Api-Key
        required: true
        type: string
      - description: Chain Destination
        in: header
        name: X-Chain
        required: true
        type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/github_com_storyprotocol_protocol-api_api_internal_models_protocolv3.IPAssetResponse'
          description: OK
      security:
      - ApiKeyAuth: []
      summary: Get an IPAsset
      tags:
      - IPAssets
  /api/v3/assets/{assetId}/metadata:
    get:
      description: Retrieve metadata for an IPAsset
      parameters:
      - description: Asset ID
        in: path
        name: assetId
        required: true
        type: string
      - description: API Key
        in: header
        name: X-Api-Key
        required: true
        type: string
      - description: Chain Destination
        in: header
        name: X-Chain
        required: true
        type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/github_com_storyprotocol_protocol-api_api_internal_models_protocolv1.IpAssetMetadata'
          description: OK
      security:
      - ApiKeyAuth: []
      summary: Get metadata for an IPAsset
      tags:
      - IPAssets
components:
  schemas:
    github_com_storyprotocol_protocol-api_api_internal_models_protocolv2.IpAssetEdgeQueryOptions:
      properties:
        orderBy:
          type: string
        orderDirection:
          type: string
        pagination:
          properties:
            after:
              type: string
            before:
              type: string
            limit:
              type: integer
          type: object
        where:
          properties:
            blockNumber:
              type: string
            ipId:
              type: string
            licenseTermsId:
              type: string
            licenseTokenId:
              type: string
            parentIpId:
              type: string
            transactionHash:
              type: string
          type: object
      type: object
    github_com_storyprotocol_protocol-api_api_internal_models_protocolv1.IpAssetMetadata:
      properties:
        id:
          type: string
        metadataHash:
          type: string
        metadataJson: {}
        metadataUri:
          type: string
        nftMetadataHash:
          type: string
        nftTokenUri:
          type: string
        registrationDate:
          type: string
      type: object
    github_com_storyprotocol_protocol-api_api_internal_models_protocolv2.IpAssetRequestBody:
      properties:
        options:
          $ref: '#/components/schemas/github_com_storyprotocol_protocol-api_api_internal_models_protocolv2.IpAssetQueryOptions'
      type: object
    github_com_storyprotocol_protocol-api_api_internal_models_protocolv1.IpAssetEdge:
      properties:
        blockNumber:
          type: string
        blockTime:
          type: string
        ipId:
          type: string
        licenseTemplate:
          type: string
        licenseTermsId:
          type: string
        licenseTokenId:
          type: string
        parentIpId:
          type: string
        transactionHash:
          type: string
        transactionIndex:
          type: string
      type: object
    github_com_storyprotocol_protocol-api_api_internal_models_protocolv3.IPAsset:
      properties:
        ancestorCount:
          type: integer
        blockNumber:
          type: string
        blockTimestamp:
          type: string
        childrenCount:
          type: integer
        descendantCount:
          type: integer
        id:
          type: string
        ipId:
          type: string
        isGroup:
          type: boolean
        latestArbitrationPolicy:
          type: string
        nftMetadata:
          $ref: '#/components/schemas/github_com_storyprotocol_protocol-api_api_internal_models_protocolv3.NftMetadata'
        parentCount:
          type: integer
        rootCount:
          type: integer
        rootIpIds:
          items:
            type: string
          type: array
        transactionHash:
          type: string
      type: object
    github_com_storyprotocol_protocol-api_api_internal_models_protocolv3.NftMetadata:
      properties:
        chainId:
          type: string
        imageUrl:
          type: string
        name:
          type: string
        tokenContract:
          type: string
        tokenId:
          type: string
        tokenUri:
          type: string
      type: object
    github_com_storyprotocol_protocol-api_api_internal_models_protocolv3.IPAssetResponse:
      properties:
        data:
          $ref: '#/components/schemas/github_com_storyprotocol_protocol-api_api_internal_models_protocolv3.IPAsset'
      type: object
    github_com_storyprotocol_protocol-api_api_internal_models_protocolv3.IPAssetsResponse:
      properties:
        data:
          items:
            $ref: '#/components/schemas/github_com_storyprotocol_protocol-api_api_internal_models_protocolv3.IPAsset'
          type: array
        hasNextPage:
          type: boolean
        hasPreviousPage:
          type: boolean
        next:
          type: string
        prev:
          type: string
      type: object
    github_com_storyprotocol_protocol-api_api_internal_models_protocolv2.IpAssetEdgeRequestBody:
      properties:
        options:
          $ref: '#/components/schemas/github_com_storyprotocol_protocol-api_api_internal_models_protocolv2.IpAssetEdgeQueryOptions'
      type: object
    github_com_storyprotocol_protocol-api_api_internal_models_protocolv1.IPAssetEdgeResponse:
      properties:
        data:
          items:
            $ref: '#/components/schemas/github_com_storyprotocol_protocol-api_api_internal_models_protocolv1.IpAssetEdge'
          type: array
        next:
          type: string
        prev:
          type: string
      type: object
    github_com_storyprotocol_protocol-api_api_internal_models_protocolv2.IpAssetQueryOptions:
      properties:
        ipAssetIds:
          items:
            type: string
          type: array
        orderBy:
          type: string
        orderDirection:
          type: string
        pagination:
          properties:
            after:
              type: string
            before:
              type: string
            limit:
              type: integer
          type: object
        tokenContractIds:
          items:
            type: string
          type: array
        tokenIds:
          items:
            type: string
          type: array
        where:
          properties:
            blockNumber:
              type: string
            blockNumberGte:
              type: string
            blockNumberLte:
              type: string
            id:
              type: string
            ipId:
              type: string
            tokenContract:
              type: string
            tokenId:
              type: string
          type: object
      type: object
  securitySchemes:
    ApiKeyAuth:
      in: header
      name: X-Api-Key
      type: apiKey