1. Plans
Networked API Documentation
  • Getting Started
  • User Authentication
    • Add New Users to Community
      POST
    • Send email invites
      POST
  • User Profile
    • User Profile
      GET
    • Profile Visits
      GET
  • Community
    • Features
      • Feature List
    • Directory
      • Users List
      • Roles List
    • Monetization
      • Plans
        • Plans List
          GET
    • Feed
      • Polls
        • Create Polls
      • Surveys
        • Create Surveys
      • Post
        • Ask and offer help
          • Post Intro
          • Post Advice
          • Post Recommendation
          • Post Kudos
          • Post Help
        • Feed Post List
        • Post to Feed
        • Get Post Comments
        • Add Comments to Post
      • upload Media
    • Opportunities
      • Company and Services
        • Company and Services List
      • Fundaising Initiatives
        • Fundraising Initiatives List
      • Career Opportunities
        • Career Opportunities
    • Events
      • Event Post
      • Edit Events
      • Delete Event
      • Event List
    • Media Center
      • Get Resources
    • Analytics
      • Community Analytics
    • Newsletter
      • Lists
        • Get newsletter subscriber lists
      • Add newsletter subscribers
      • Get newsletter subscribers
    • Community Details
      GET
    • Spaces List
      GET
  • Webhooks
    • User Webhooks
      • user.joined
      • user.profile.updated
      • user.joined.space
    • Feed Webhooks
      • post.created
      • post.liked
      • post.unliked
      • comment.added
      • post.reported
  • References
    • Response Codes
      GET
    • Model Status
      GET
    • Post Types
      GET
  1. Plans

Plans List

GET
https://backend.networked.co/stripe/monetization/plans

💳 Get All Monetization Plans#

Fetches all available monetization plans with pricing, benefits, space associations, and onboarding configurations.

HTTP Method:#

GET

Endpoint:#

/stripe/monetization/plans

Headers#

NameTypeRequiredDescription
x-api-keystring✅API key to authorize the request.

Body Parameters#

None

Sample Response#

{
  "data": [
    {
      "planId": "67ce884cb3d93800124ab49a",
      "name": "No Cost",
      "benefits": ["-"],
      "pricing": [
        {
          "currency": "usd",
          "trialDays": 0,
          "_id": "67ce884cb3d93800124ab49b",
          "amount": 0,
          "frequency": "month",
          "priceId": "price_1R0zwOQin9e7zjeOptIYaT7G",
          "type": "recurring"
        }
      ],
      "spaces": [],
      "questions": [],
      "isOpen": true,
      "skipCreditCard": false,
      "status": 1,
      "communityOnboardApproval": false
    }
  ],
  "error": false,
  "message": "Success"
}

Response Interface#

interface MonetizationPlan {
  planId: string;
  name: string;
  benefits: string[];
  pricing: {
    currency: string;
    trialDays: number;
    _id: string;
    amount: number;
    frequency: string;
    priceId: string;
    type: 'recurring' | 'once';
  }[];
  spaces: {
    id: string;
    name: string;
    image?: string;
  }[];
  questions: string[];
  isOpen: boolean;
  skipCreditCard: boolean;
  status: number;
  communityOnboardApproval: boolean;
  description?: string;
  image?: string;
}

Response Field Descriptions#

FieldTypeDescription
planIdstringUnique identifier for the plan.
namestringName of the monetization plan.
benefitsstring[]List of benefits provided by the plan.
pricingobject[]Array of pricing configurations.
└─ currencystringCurrency code (e.g., "usd").
└─ trialDaysnumberNumber of trial days before billing starts.
└─ _idstringUnique identifier for the pricing object.
└─ amountnumberAmount to be charged.
└─ frequencystringBilling frequency ("month", "day", etc.).
└─ priceIdstringStripe price identifier.
└─ typestringType of payment cycle ("recurring", "once").
spacesobject[]Spaces associated with the plan.
└─ idstringUnique identifier of the space.
└─ namestringName of the space.
└─ imagestring (optional)Image URL for the space.
questionsstring[]Onboarding questions to be answered by the user.
isOpenbooleanWhether the plan is open for public joining.
skipCreditCardbooleanIf true, user can join without providing card details.
statusnumberPlan status (e.g., 1 for active, 0 for inactive).
communityOnboardApprovalbooleanIf true, community admin approval is required for joining.
descriptionstring (optional)Description or details about the plan.
imagestring (optional)Image representing the plan.

Reference#

📘 Standard Response Codes

Notes#

Plans may be open to all users or require admin approval based on isOpen and communityOnboardApproval.
skipCreditCard allows onboarding without billing information.
Some plans might include detailed descriptions and onboarding questions to guide user selection.

Request

Query Params

Header Params

Responses

🟢200
application/json
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://backend.networked.co/stripe/monetization/plans?location%20=2' \
--header 'x-api-key: <your-api-key>'
Response Response Example
{
    "data": [
        {
            "planId": "67ce884cb3d93800124ab49a",
            "name": "No Cost",
            "benefits": [
                "-"
            ],
            "pricing": [
                {
                    "currency": "usd",
                    "trialDays": 0,
                    "_id": "67ce884cb3d93800124ab49b",
                    "amount": 0,
                    "frequency": "month",
                    "priceId": "price_1R0zwOQin9e7zjeOptIYaT7G",
                    "type": "recurring"
                }
            ],
            "spaces": [],
            "questions": [],
            "isOpen": true,
            "skipCreditCard": false,
            "status": 1,
            "communityOnboardApproval": false
        },
        {
            "planId": "67ce8c21b3d93800124ab5ee",
            "name": "Zero Dollar Monthly Open Joining Credit Card Required",
            "benefits": [
                "All features will Reflect here",
                "Central depository Central depository Central depository Central depository ",
                "Zero Dollar Public No Credit Card Required",
                "3+ years of experience in Java development",
                "Full benifit",
                "Feed",
                "Messaging",
                "All Spaces Given Permission"
            ],
            "pricing": [
                {
                    "currency": "usd",
                    "trialDays": 0,
                    "_id": "67ce8c21b3d93800124ab5ef",
                    "priceId": "price_1R10CDQin9e7zjeOqh61n4KQ",
                    "amount": 0,
                    "frequency": "month",
                    "type": "recurring"
                }
            ],
            "spaces": [
                {
                    "id": "67ce8738d12a880012003464",
                    "name": "Web Team"
                },
                {
                    "id": "67ce875fd12a880012003507",
                    "name": "Growth Team"
                },
                {
                    "id": "67ce8750d12a8800120034d2",
                    "name": "QA Team"
                },
                {
                    "id": "67ce8745d12a880012003495",
                    "name": "Sales Team"
                },
                {
                    "id": "67ce86c4d12a880012003129",
                    "name": "Group Chat",
                    "image": "https://ntwc-us-east-2-qa-eks-s3-files-storage.s3.amazonaws.com/user-5fc0da0bb3bfc0123e0f7011/file_1741588163701_external-file-1741588163675.png"
                }
            ],
            "questions": [],
            "isOpen": true,
            "skipCreditCard": false,
            "status": 1,
            "communityOnboardApproval": false,
            "description": "Improves iron levels: Fercext tablet helps increase iron levels in the body, which is essential for healthy red blood cells. Boosts energy: The tablet's iron content helps alleviate fatigue and weakness, improving overall energy levels.\n3. Supports fetal development: During pregnancy, Fercext tablet ensures adequate iron supply to the fetus, supporting healthy growth and development.\n4. Enhances cognitive function: Vitamin B12 in Fercext tablet plays a crucial role in maintaining healthy nerve cells and supporting cognitive function.\n\n1. Consult a doctor: Before taking Fercext tablet, consult a doctor to determine the correct dosage and ensure it's safe for you to take.\n2. Follow dosage instructions: Adhere to the recommended dosage and do not exceed it without consulting a doctor.\n3. Monitor iron levels: Regularly check iron levels to avoid iron overload, which can be toxic.\n",
            "image": "https://ntwc-us-east-2-qa-eks-s3-files-storage.s3.us-east-2.amazonaws.com/user-6787893423126f0012a92ed6/file_1741596504542_Zero.jpg"
        },
        {
            "planId": "67ce8c77b3d93800124ab637",
            "name": "Zero Dollar Monthly Open Joining No Credit Card Required",
            "benefits": [
                "Full benifit"
            ],
            "pricing": [
                {
                    "currency": "usd",
                    "trialDays": 0,
                    "_id": "67ce8c77b3d93800124ab638",
                    "priceId": "price_1R10DbQin9e7zjeOhTgxSSmT",
                    "amount": 0,
                    "frequency": "month",
                    "type": "recurring"
                }
            ],
            "spaces": [
                {
                    "id": "67ce8750d12a8800120034d2",
                    "name": "QA Team"
                }
            ],
            "questions": [],
            "isOpen": true,
            "skipCreditCard": true,
            "status": 1,
            "communityOnboardApproval": false,
            "description": "Fercext tablet is a dietary supplement that contains iron, folic acid, and vitamin B12. Here are some of the uses and benefits of Fercext tablet:\n\n# Uses\n1. Iron deficiency anemia: Fercext tablet is used to treat iron deficiency anemia, which is a condition where the body does not have enough iron to produce hemoglobin.\n2. Pregnancy and lactation: Fercext tablet is recommended for pregnant and breastfeeding women to prevent iron deficiency anemia and ensure adequate iron supply to the fetus or baby.\n3. Fatigue and weakness: The tablet helps alleviate fatigue, weakness, and shortness of breath associated with iron deficiency anemia.\n4. Menstrual disorders: Fercext tablet may be prescribed to treat menstrual disorders such as heavy menstrual bleeding, irregular periods, and premenstrual syndrome (PMS).",
            "image": "https://ntwc-us-east-2-qa-eks-s3-files-storage.s3.us-east-2.amazonaws.com/user-6787893423126f0012a92ed6/file_1741596525480_IMG5.jpg"
        },
        {
            "planId": "67ce8db4b3d93800124ab7c6",
            "name": "Zero dollar Monthly Approval Req Credit Card Required",
            "benefits": [
                "Central depository Central depository Central depository Central depository "
            ],
            "pricing": [
                {
                    "currency": "usd",
                    "trialDays": 0,
                    "_id": "67ce8db4b3d93800124ab7c7",
                    "priceId": "price_1R10IiQin9e7zjeOvRClCVex",
                    "amount": 0,
                    "frequency": "month",
                    "type": "recurring"
                }
            ],
            "spaces": [
                {
                    "id": "67ce8745d12a880012003495",
                    "name": "Sales Team"
                }
            ],
            "questions": [
                "How do you know Networked?",
                "How do you Rate networked?"
            ],
            "isOpen": true,
            "skipCreditCard": false,
            "status": 1,
            "communityOnboardApproval": true,
            "description": "A Java Developer is responsible for designing, developing, and maintaining software applications using the Java programming language. Here are the key responsibilities:\n\n- Designing and developing high-volume, low-latency applications for mission-critical systems\n- Contributing to all phases of the development lifecycle\n- Writing well-designed, testable, efficient code\n- Ensuring designs are in compliance with specifications\n- Preparing and producing releases of software components\n- Supporting continuous improvement by investigating alternatives and technologies\n",
            "image": "https://ntwc-us-east-2-qa-eks-s3-files-storage.s3.us-east-2.amazonaws.com/user-6787893423126f0012a92ed6/file_1741596548126_IMG3.jpg"
        },
        {
            "planId": "67ce8e34b3d93800124ab7d8",
            "name": "Zero Dollar monthly Require Approval  No Credit Card",
            "benefits": [
                "3+ years of experience in Java development"
            ],
            "pricing": [
                {
                    "currency": "usd",
                    "trialDays": 0,
                    "_id": "67ce8e34b3d93800124ab7d9",
                    "priceId": "price_1R10KmQin9e7zjeOx5joTUfg",
                    "amount": 0,
                    "frequency": "month",
                    "type": "recurring"
                }
            ],
            "spaces": [
                {
                    "id": "67ce875fd12a880012003507",
                    "name": "Growth Team"
                }
            ],
            "questions": [
                "How do you know networked."
            ],
            "isOpen": true,
            "skipCreditCard": true,
            "status": 1,
            "communityOnboardApproval": false,
            "description": "A Java Developer is responsible for designing, developing, and maintaining software applications using the Java programming language. Here are the key responsibilities:\n\n- Designing and developing high-volume, low-latency applications for mission-critical systems\n- Contributing to all phases of the development lifecycle\n- Writing well-designed, testable, efficient code\n- Ensuring designs are in compliance with specifications\n- Preparing and producing releases of software components\n- Supporting continuous improvement by investigating alternatives and technologies\n"
        },
        {
            "planId": "67ce9871b3d93800124abe53",
            "name": "Zero Dollar Once Public Credit Cards",
            "benefits": [],
            "pricing": [
                {
                    "currency": "usd",
                    "trialDays": 0,
                    "_id": "67ce9871b3d93800124abe54",
                    "priceId": "price_1R1113Qin9e7zjeOHfriEQeZ",
                    "amount": 0,
                    "frequency": "month",
                    "type": "once"
                }
            ],
            "spaces": [
                {
                    "id": "67ce875fd12a880012003507",
                    "name": "Growth Team"
                },
                {
                    "id": "67ce8738d12a880012003464",
                    "name": "Web Team"
                }
            ],
            "questions": [
                "How do you know networked?"
            ],
            "isOpen": true,
            "skipCreditCard": false,
            "status": 1,
            "communityOnboardApproval": true
        },
        {
            "planId": "67ce98f0b3d93800124abe65",
            "name": "Paid Plan Public Open Joining Monthly 15 Days Free trail",
            "benefits": [
                "Zero Dollar Public No Credit Card Required",
                "Central depository Central depository Central depository Central depository "
            ],
            "pricing": [
                {
                    "currency": "usd",
                    "trialDays": 15,
                    "_id": "67ce98f0b3d93800124abe66",
                    "priceId": "price_1R1136Qin9e7zjeO0KDeeHCv",
                    "amount": 100,
                    "frequency": "month",
                    "type": "recurring"
                }
            ],
            "spaces": [
                {
                    "id": "67ce875fd12a880012003507",
                    "name": "Growth Team"
                }
            ],
            "questions": [],
            "isOpen": true,
            "skipCreditCard": false,
            "status": 1,
            "communityOnboardApproval": false,
            "description": "A Java Developer is responsible for designing, developing, and maintaining software applications using the Java programming language. Here are the key responsibilities:\n\n- Designing and developing high-volume, low-latency applications for mission-critical systems\n- Contributing to all phases of the development lifecycle\n- Writing well-designed, testable, efficient code\n- Ensuring designs are in compliance with specifications\n- Preparing and producing releases of software components\n- Supporting continuous improvement by investigating alternatives and technologies\n"
        },
        {
            "planId": "67ce992ab3d93800124abe77",
            "name": "Paid Plan Pay Once Approval Required",
            "benefits": [],
            "pricing": [
                {
                    "currency": "usd",
                    "trialDays": 0,
                    "_id": "67ce992ab3d93800124abe78",
                    "priceId": "price_1R1142Qin9e7zjeOSFZxN6Hh",
                    "amount": 1000,
                    "frequency": "month",
                    "type": "once"
                }
            ],
            "spaces": [
                {
                    "id": "67ce8750d12a8800120034d2",
                    "name": "QA Team"
                }
            ],
            "questions": [
                "How do you know Networked?"
            ],
            "isOpen": true,
            "skipCreditCard": false,
            "status": 1,
            "communityOnboardApproval": true
        },
        {
            "planId": "67d13372b3d93800124b6503",
            "name": "10 Dolar Plan Open joining",
            "benefits": [],
            "pricing": [
                {
                    "currency": "usd",
                    "trialDays": 0,
                    "_id": "67d13372b3d93800124b6504",
                    "priceId": "price_1R1jR8Qin9e7zjeOeEVr0zoX",
                    "amount": 10,
                    "frequency": "day",
                    "type": "recurring"
                }
            ],
            "spaces": [
                {
                    "id": "67d12f9bc34d1d0012c45d6a",
                    "name": "Added by super admin"
                },
                {
                    "id": "67ce8738d12a880012003464",
                    "name": "Web Team"
                }
            ],
            "questions": [],
            "isOpen": true,
            "skipCreditCard": false,
            "status": 1,
            "communityOnboardApproval": false
        },
        {
            "planId": "67d17728a4261200121b4c3e",
            "name": "50 Dolar approval required",
            "benefits": [],
            "pricing": [
                {
                    "currency": "usd",
                    "trialDays": 15,
                    "_id": "67d17728a4261200121b4c3f",
                    "priceId": "price_1R1nwiQin9e7zjeOySaGpKtW",
                    "amount": 50,
                    "frequency": "month",
                    "type": "recurring"
                }
            ],
            "spaces": [
                {
                    "id": "67ce8738d12a880012003464",
                    "name": "Web Team"
                },
                {
                    "id": "67ce8745d12a880012003495",
                    "name": "Sales Team"
                },
                {
                    "id": "67ce8750d12a8800120034d2",
                    "name": "QA Team"
                }
            ],
            "questions": [
                "How do you know Networked?",
                "please rate out of 10"
            ],
            "isOpen": true,
            "skipCreditCard": false,
            "status": 1,
            "communityOnboardApproval": true
        },
        {
            "planId": "67d92358040143001252cd99",
            "name": "Contributor onboard with plan",
            "benefits": [],
            "pricing": [
                {
                    "currency": "usd",
                    "trialDays": 0,
                    "_id": "67d92358040143001252cd9a",
                    "priceId": "price_1R3ukuQin9e7zjeOBAx3Px6D",
                    "amount": 0,
                    "frequency": "month",
                    "type": "recurring"
                }
            ],
            "spaces": [],
            "questions": [],
            "isOpen": true,
            "skipCreditCard": false,
            "status": 0,
            "communityOnboardApproval": false
        },
        {
            "planId": "67dcedde9e8cb000121c6303",
            "name": "Zero Once Credit Card",
            "benefits": [],
            "pricing": [
                {
                    "currency": "usd",
                    "trialDays": 0,
                    "_id": "67dcedde9e8cb000121c6304",
                    "priceId": "price_1R4xOEQin9e7zjeOyRw1FlKR",
                    "amount": 0,
                    "frequency": "month",
                    "type": "once"
                }
            ],
            "spaces": [
                {
                    "id": "67d9109eedd122001332b1fb",
                    "name": "Auto pin 2",
                    "image": "https://ntwc-us-east-2-qa-eks-s3-files-storage.s3.us-east-2.amazonaws.com/user-6787893423126f0012a92ed6/file_1742481232837_Image%20Pasted%20at%202025-3-19%2016-48.png"
                }
            ],
            "questions": [
                "Who is"
            ],
            "isOpen": true,
            "skipCreditCard": false,
            "status": 1,
            "communityOnboardApproval": true
        },
        {
            "planId": "6818c7b2e303f20012317ed8",
            "name": "No Credit Card Req 1",
            "benefits": [],
            "pricing": [
                {
                    "currency": "usd",
                    "trialDays": 0,
                    "_id": "6818c7b2e303f20012317ed9",
                    "priceId": "price_1RLPmYQin9e7zjeOVPfkt3ts",
                    "amount": 1,
                    "frequency": "month",
                    "type": "recurring"
                }
            ],
            "spaces": [
                {
                    "id": "67d9108eedd122001332b1b2",
                    "name": "Auto Pinned",
                    "image": "https://ntwc-us-east-2-qa-eks-s3-files-storage.s3.us-east-2.amazonaws.com/user-6787893423126f0012a92ed6/file_1742481265938_Forex.jpg"
                }
            ],
            "questions": [],
            "isOpen": true,
            "skipCreditCard": false,
            "status": 1,
            "communityOnboardApproval": false
        },
        {
            "planId": "6818c9f9e303f20012317f23",
            "name": "NO Credit Zero Dollor",
            "benefits": [],
            "pricing": [
                {
                    "currency": "usd",
                    "trialDays": 0,
                    "_id": "6818c9f9e303f20012317f24",
                    "priceId": "price_1RLPvxQin9e7zjeOnwoumfrV",
                    "amount": 0,
                    "frequency": "month",
                    "type": "recurring"
                }
            ],
            "spaces": [],
            "questions": [],
            "isOpen": true,
            "skipCreditCard": true,
            "status": 1,
            "communityOnboardApproval": false
        },
        {
            "planId": "68270c70cffccb00124a8cc3",
            "name": "Zero Dollor No credit Card required",
            "benefits": [],
            "pricing": [
                {
                    "currency": "usd",
                    "trialDays": 0,
                    "_id": "68270c70cffccb00124a8cc4",
                    "priceId": "price_1RPL2qQin9e7zjeO71XHX4jf",
                    "amount": 0,
                    "frequency": "month",
                    "type": "recurring"
                }
            ],
            "spaces": [
                {
                    "id": "67d923695930c6001215449d",
                    "name": "New Demo space"
                }
            ],
            "questions": [],
            "isOpen": true,
            "skipCreditCard": true,
            "status": 1,
            "communityOnboardApproval": false
        },
        {
            "planId": "68270f48cffccb00124a8f8b",
            "name": "Zero dollor Plan",
            "benefits": [],
            "pricing": [
                {
                    "currency": "usd",
                    "trialDays": 0,
                    "_id": "68270f48cffccb00124a8f8c",
                    "priceId": "price_1RPLEaQin9e7zjeOEdPwVCBS",
                    "amount": 0,
                    "frequency": "month",
                    "type": "recurring"
                }
            ],
            "spaces": [
                {
                    "id": "67d923695930c6001215449d",
                    "name": "New Demo space"
                }
            ],
            "questions": [],
            "isOpen": true,
            "skipCreditCard": true,
            "status": 1,
            "communityOnboardApproval": false
        }
    ],
    "error": false,
    "message": "Success"
}
Modified at 2026-05-15 11:06:53
Previous
Plans
Next
Feed
Built with