Skip to main content
GET
/
protocol
/
plans
/
{planId}
Get Plan
curl --request GET \
  --url https://api.sandbox.nevermined.dev/api/v1/protocol/plans/{planId} \
  --header 'Authorization: Bearer <token>'
{
  "planId": "<string>",
  "name": "<string>",
  "description": "<string>",
  "priceConfig": {
    "priceType": "FIXED_PRICE",
    "tokenAddress": "<string>",
    "amounts": [
      123
    ],
    "receivers": [
      "<string>"
    ]
  },
  "creditsConfig": {
    "creditsType": "FIXED",
    "amount": 123,
    "minAmount": 123,
    "durationOfThePlan": 123
  },
  "isListed": true,
  "owner": "<string>"
}

Authorizations

Authorization
string
header
required

Your Nevermined API Key (starts with 'nvm:'). Get one at nevermined.app under Settings > API Keys.

Path Parameters

planId
integer
required

The plan's unique identifier

Response

Plan details

planId
string
name
string
description
string
priceConfig
object
creditsConfig
object
isListed
boolean
owner
string