Story Protocol LicenseTemplates API
The LicenseTemplates API from Story Protocol — 2 operation(s) for licensetemplates.
The LicenseTemplates API from Story Protocol — 2 operation(s) for licensetemplates.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/story-protocol-licensetemplates-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 3.2.0
info:
title: Story Protocol API Reference Collections License Templates API
version: v1
contact: {}
servers:
- url: https://api.storyapis.com
description: Production server
tags:
- name: LicenseTemplates
paths:
/api/v3/licenses/templates:
post:
description: Retrieve a paginated, filtered list of LicenseTemplates
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.LicenseTemplatesRequestBody'
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.LicenseTemplatesResponse'
description: OK
security:
- ApiKeyAuth: []
summary: List LicenseTemplates
tags:
- LicenseTemplates
/api/v3/licenses/templates/{licenseTemplateId}:
get:
description: Retrieve a LicenseTemplate
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: LicenseTemplate ID
in: path
name: licenseTemplateId
required: true
type: string
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/github_com_storyprotocol_protocol-api_api_internal_models_protocolv1.LicenseTemplateResponse'
description: OK
security:
- ApiKeyAuth: []
summary: Get a LicenseTemplate
tags:
- LicenseTemplates
components:
schemas:
github_com_storyprotocol_protocol-api_api_internal_models_protocolv1.LicenseTemplateResponse:
properties:
data:
$ref: '#/components/schemas/github_com_storyprotocol_protocol-api_api_internal_models_protocolv1.LicenseTemplate'
type: object
github_com_storyprotocol_protocol-api_api_internal_models_protocolv2.LicenseTemplatesQueryOptions:
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
type: object
type: object
github_com_storyprotocol_protocol-api_api_internal_models_protocolv2.LicenseTemplatesRequestBody:
properties:
options:
$ref: '#/components/schemas/github_com_storyprotocol_protocol-api_api_internal_models_protocolv2.LicenseTemplatesQueryOptions'
type: object
github_com_storyprotocol_protocol-api_api_internal_models_protocolv1.LicenseTemplatesResponse:
properties:
data:
items:
$ref: '#/components/schemas/github_com_storyprotocol_protocol-api_api_internal_models_protocolv1.LicenseTemplate'
type: array
next:
type: string
prev:
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
securitySchemes:
ApiKeyAuth:
in: header
name: X-Api-Key
type: apiKey