VC Fund

Use the funds node to get information about funds.
A limit on the number of objects to be returned, between 1 and 100.

Retrieving Funds

GET https://vcapi.parsers.me/v2/funds/
Authorization: Bearer {your-auth-token} or query string parameter

Success responce:

Status 200 OK

[
    {
        "Id": "6d44434a-75be-48e6-9132-0031ef4a8518",
        "Name": "Benjamin Novak",
        "Website": "www.benjamindavidnovak.com"
    },
...
    {
        "Id": "254eebdd-d225-4e87-8c0b-00376375bc6d",
        "Name": "Broadway Angels",
        "Website": "http://www.broadway-angels.com"
    }
]

The data response payload contains the array of funds.

Retrieving Basic Fund Information

Basic Fund properties

IdVenture Fund Id
NameVenture Fund Name
WebsiteVenture Fund Website
GET https://vcapi.parsers.me/v2/funds/{fundId}
Authorization: Bearer {your-auth-token} or query string parameter

Success responce:

Status 200 OK

{
    "Id": "6d44434a-75be-48e6-9132-0031ef4a8518",
    "Name": "Benjamin Novak",
    "Website": "www.benjamindavidnovak.com"
}

The data response payload contains specific fund.

Retrieving Advanced Fund Information

Advanced Fund properties

LogoVenture Fund Logo
DescriptionAn array of Descriptions collected from various sources
HeadquartersVenture Fund Headquarters
TwitterAn array of Twitter pages collected from various sources
FacebookAn array of Facebook pages collected from various sources
InstagramAn array of Instagram pages collected from various sources
LinkedInAn array of LinkedIn pages collected from various sources
MediumAn array of Medium pages collected from various sources
YoutubeAn array of Youtube pages collected from various sources
EmailAn array of Emails collected from various sources
AngelListAn array of AngelList pages collected from various sources
ProductHuntAn array of ProductHunt pages collected from various sources
LocationAn array of Locations collected from various sources
PhoneAn array of Phones collected from various sources
FacebookReviewFacebook Review count
FacebookLikesFacebook Likes count
FacebookCheckInsFacebook CheckIns count
StartupsCountStartups count
MembersCountMembers count
TagsVenture Fund Category Tags
GET https://vcapi.parsers.me/v2/funds/{fundId}?$select=Id,Name,Website,Logo,Description,Twitter,Facebook,Instagram,LinkedIn,Medium,Youtube,Email,AngelList,Location,Phone,FacebookReview,FacebookLikes,FacebookCheckIns,StartupsCount,MembersCount,Tags
Authorization: Bearer {your-auth-token} or query string parameter

Success responce:

Status 200 OK

{
    "Id": "ae607db9-8c5e-49d1-92cf-edb3d7d718a3",
    "StartupsCount": 115,
    "MembersCount": 11,
    "Activity": "-",
    "Name": "Ulu Ventures",
    "Website": "https://www.uluventures.com",
    "Logo": "https://uluventures.com/wp-content/uploads/2020/03/Ulu_Logo_107x42.png",
    "Description": "With deep connections to Stanford and Silicon Valley, Ulu Ventures is a venture capital firm that actively seeks and funds women and diverse founder teams.",
    "Twitter": [
        "https://twitter.com/uluventures"
    ],
    "Facebook": [],
    "Instagram": [],
    "LinkedIn": [
        "https://www.linkedin.com/company/ulu-ventures/"
    ],
    "Medium": [],
    "Youtube": [],
    "Email": [
        "info@uluventures.com"
    ],
    "AngelList": [],
    "FacebookReview": null,
    "FacebookLikes": null,
    "FacebookCheckIns": null,
    "Location": [],
    "Phone": [],
    "Tags": [
        "Platform",
        "Software",
        "Data",
        "Service",
        "FinTech"
    ]
}

The data response payload contains specific fund.
This parameters can be used with collections and specific records.

GroupsFund group
GET https://vcapi.parsers.me/v2/funds/{fundId}?$expand=Groups
Authorization: Bearer {your-auth-token} or query string parameter

Success responce:

Status 200 OK

{
    "Id": "ae607db9-8c5e-49d1-92cf-edb3d7d718a3",
    "Name": "Ulu Ventures",
    "Website": "https://www.uluventures.com",
    "Groups": [
        {
            "Id": "286b1f91-0ea5-4062-8d00-1ff222e4f65d",
            "Name": "All"
        },
        {
            "Id": "952d3502-f5c3-4280-89ed-a7c87983f77e",
            "Name": "PaloAlto"
        }
    ]
}

This parameters can be used with collections and specific records.