Venturalink API Documentation
Integrate with Venturalink using our RESTful API. Below are some example endpoints and usage.
GET
/api/v1/startups
Retrieve a list of all startups registered on Venturalink.
Query Params:
category
(optional), country
(optional)
Example:
GET https://venturalink.com/api/v1/startups?category=fintech&country=IN
POST
/api/v1/investor/register
Register a new investor account.
Body:
name
, email
, password
Example:
POST https://venturalink.com/api/v1/investor/register
{ "name": "Amit", "email": "amit@investor.com", "password": "securepass" }
GET
/api/v1/investor/{id}
Get details of a specific investor by ID.
Path Param:
id
(required)
Example:
GET https://venturalink.com/api/v1/investor/12345
POST
/api/v1/startup/register
Register a new startup.
Body:
name
, founder
, email
, description
Example:
POST https://venturalink.com/api/v1/startup/register
{ "name": "TechNova", "founder": "Priya", "email": "priya@technova.com", "description": "AI-powered solutions" }