Story Protocol IPLicenseTerms API

The IPLicenseTerms API from Story Protocol — 4 operation(s) for iplicenseterms.

Operations 4

POST /api/v3/detailed-ip-license-terms List detailed ip license term
POST /api/v3/licenses/ip/terms List IPLicenseTerms
GET /api/v3/licenses/ip/terms/{ipId} Get IP License Terms for an IP
GET /api/v3/licenses/terms/default Get default license term

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-iplicenseterms-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-iplicenseterms-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Story Protocol API Reference Collections IP License Terms API
  version: v1
  contact: {}
servers:
- url: https://api.storyapis.com
  description: Production server
tags:
- name: IPLicenseTerms
paths:
  /api/v3/detailed-ip-license-terms:
    post:
      description: Retrieve detailed IP License Terms associated with list of IP ID
      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_protocolv1.DetailedIPLicenseTermsRequestBody'
        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_protocolv2.DetailedTermsResponse'
          description: OK
      security:
      - ApiKeyAuth: []
      summary: List detailed ip license term
      tags:
      - IPLicenseTerms
  /api/v3/licenses/ip/terms:
    post:
      description: Retrieve a paginated, filtered list of IPLicenseTerms
      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.IPLicenseTermsRequestBody'
        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.IPLicenseTermsResponse'
          description: OK
      security:
      - ApiKeyAuth: []
      summary: List IPLicenseTerms
      tags:
      - IPLicenseTerms
  /api/v3/licenses/ip/terms/{ipId}:
    get:
      description: Retrieve IP License Terms associated with an IP ID
      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
      - description: IP ID
        in: path
        name: ipId
        required: true
        type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/github_com_storyprotocol_protocol-api_api_internal_models_protocolv1.IPLicenseTermsResponse'
          description: OK
      security:
      - ApiKeyAuth: []
      summary: Get IP License Terms for an IP
      tags:
      - IPLicenseTerms
  /api/v3/licenses/terms/default:
    get:
      description: Retrieve default license term
      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
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/github_com_storyprotocol_protocol-api_api_internal_models_protocolv2.DetailedTermsDefaultResponse'
          description: OK
      security:
      - ApiKeyAuth: []
      summary: Get default license term
      tags:
      - IPLicenseTerms
components:
  schemas:
    github_com_storyprotocol_protocol-api_api_internal_models_protocolv1.IPLicenseTermsResponse:
      properties:
        data:
          items:
            $ref: '#/components/schemas/github_com_storyprotocol_protocol-api_api_internal_models_protocolv1.IPLicenseTerm'
          type: array
        next:
          type: string
        prev:
          type: string
      type: object
    github_com_storyprotocol_protocol-api_api_internal_models_protocolv2.IPLicenseTermsQueryOptions:
      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
            id:
              type: string
            ipId:
              type: string
          type: object
      type: object
    github_com_storyprotocol_protocol-api_api_internal_models_protocolv2.IPLicenseTermsRequestBody:
      properties:
        options:
          $ref: '#/components/schemas/github_com_storyprotocol_protocol-api_api_internal_models_protocolv2.IPLicenseTermsQueryOptions'
      type: object
    github_com_storyprotocol_protocol-api_api_internal_models_protocolv2.DetailedTermsDefaultResponse:
      properties:
        data:
          $ref: '#/components/schemas/github_com_storyprotocol_protocol-api_api_internal_models_protocolv2.DetailedTerms'
      type: object
    github_com_storyprotocol_protocol-api_api_internal_models_protocolv1.DetailedIPLicenseTermsRequestBody:
      properties:
        options:
          $ref: '#/components/schemas/github_com_storyprotocol_protocol-api_api_internal_models_protocolv1.DetailedIPLicenseTermsQueryOptions'
      type: object
    github_com_storyprotocol_protocol-api_api_internal_models_protocolv2.DetailedTerms:
      properties:
        disabled:
          type: boolean
        id:
          type: string
        ipId:
          type: string
        licenseTemplate:
          $ref: '#/components/schemas/github_com_storyprotocol_protocol-api_api_internal_models_protocolv1.LicenseTemplate'
        licenseTemplateId:
          type: string
        licensingConfig:
          $ref: '#/components/schemas/github_com_storyprotocol_protocol-api_api_internal_models_protocolv1.LicensingConfig'
        terms:
          $ref: '#/components/schemas/github_com_storyprotocol_protocol-api_api_internal_models_protocolv1.Term'
      type: object
    big.Int:
      type: object
    github_com_storyprotocol_protocol-api_api_internal_models_protocolv1.DetailedIPLicenseTermsQueryOptions:
      properties:
        where:
          properties:
            ipIds:
              items:
                type: string
              type: array
          type: object
      type: object
    github_com_storyprotocol_protocol-api_api_internal_models_protocolv1.IPLicenseTerm:
      properties:
        blockNumber:
          type: string
        blockTime:
          type: string
        disabled:
          type: boolean
        id:
          type: string
        ipId:
          type: string
        licenseTemplate:
          type: string
        licenseTermsId:
          type: string
        licensingConfig:
          $ref: '#/components/schemas/github_com_storyprotocol_protocol-api_api_internal_models_protocolv1.LicensingConfig'
      type: object
    github_com_storyprotocol_protocol-api_api_internal_models_protocolv1.LicensingConfig:
      properties:
        commercialRevShare:
          type: integer
        disabled:
          type: boolean
        expectGroupRewardPool:
          type: string
        expectMinimumGroupRewardShare:
          type: integer
        hookData:
          type: string
        isSet:
          type: boolean
        licensingHook:
          type: string
        mintingFee:
          type: string
      type: object
    github_com_storyprotocol_protocol-api_api_internal_models_protocolv1.LicenseTemplate:
      properties:
        blockNumber:
          type: string
        blockTime:
          type: string
        id:
          type: string
        metadataUri:
          type: string
        name:
          type: string
      type: object
    github_com_storyprotocol_protocol-api_api_internal_models_protocolv2.DetailedTermsResponse:
      properties:
        data:
          items:
            $ref: '#/components/schemas/github_com_storyprotocol_protocol-api_api_internal_models_protocolv2.DetailedTerms'
          type: array
      type: object
    github_com_storyprotocol_protocol-api_api_internal_models_protocolv1.Term:
      properties:
        commercialAttribution:
          type: boolean
        commercialRevCeiling:
          $ref: '#/components/schemas/big.Int'
        commercialRevShare:
          $ref: '#/components/schemas/big.Int'
        commercialUse:
          type: boolean
        commercializerChecker:
          type: string
        commercializerCheckerData:
          type: string
        currency:
          type: string
        defaultMintingFee:
          type: integer
        derivativeRevCeiling:
          $ref: '#/components/schemas/big.Int'
        derivativesAllowed:
          type: boolean
        derivativesApproval:
          type: boolean
        derivativesAttribution:
          type: boolean
        derivativesReciprocal:
          type: boolean
        expiration:
          $ref: '#/components/schemas/big.Int'
        royaltyPolicy:
          type: string
        transferable:
          type: boolean
        uri:
          type: string
      type: object
  securitySchemes:
    ApiKeyAuth:
      in: header
      name: X-Api-Key
      type: apiKey