Startup
Use the startups node to get information about startups.
A limit on the number of objects to be returned, between 1 and 100.
Retrieving Startups
GET https://vcapi.parsers.me/v2/startups/
Authorization: Bearer {your-auth-token} or query string parameter
Success responce:
Status 200 OK
[
    {
        "Id": "26e2f029-f797-40e9-b86e-01a0d2164075",
        "Website": "http://8i.com/",
        "Name": "3D Video of People"
    },
...
    {
        "Id": "537c965d-530e-4eb7-b39a-527e9b94d612",
        "Website": "http://abridge.com/",
        "Name": "Abridge"
    }
]
The data response payload contains the array of startups.
Retrieving Basic Startup Information
Basic Startup properties
| Id | Startup Id | 
| Name | Startup Name | 
| Website | Startup Website | 
GET https://vcapi.parsers.me/v2/startups/{startupId}
Authorization: Bearer {your-auth-token} or query string parameter
Success responce:
Status 200 OK
{
    "Id": "26e2f029-f797-40e9-b86e-01a0d2164075",
    "Website": "http://8i.com/",
    "Name": "8i"
}
The data response payload contains specific startup.
Retrieving Advanced Startup Information
Advanced Startup properties
| Logo | Startup Logo | 
| Description | An array of Descriptions collected from various sources | 
| An array of Twitter pages collected from various sources | |
| An array of Facebook pages collected from various sources | |
| An array of Instagram pages collected from various sources | |
| An array of LinkedIn pages collected from various sources | |
| Medium | An array of Medium pages collected from various sources | 
| Youtube | An array of Youtube pages collected from various sources | 
| An array of Emails collected from various sources | |
| AngelList | An array of AngelList pages collected from various sources | 
| ProductHunt | An array of ProductHunt pages collected from various sources | 
| Location | An array of Locations collected from various sources | 
| Phone | An array of Phones collected from various sources | 
| FacebookReview | Facebook Review count | 
| FacebookLikes | Facebook Likes count | 
| FacebookCheckIns | Facebook CheckIns count | 
| Founded | Startup founded info | 
| FounderName | Startup founder info | 
| MembersCount | Members count | 
| TotalRaised | Total raised | 
| Tags | Venture Fund Category Tags | 
GET https://vcapi.parsers.me/v2/startups/{startupId}?$select=Id,Name,Website,Logo,Description,Twitter,Facebook,Instagram,LinkedIn,Medium,Youtube,Email,AngelList,Location,Phone,FacebookReview,FacebookLikes,FacebookCheckIns,Founded,FounderName,Tags
Authorization: Bearer {your-auth-token} or query string parameter
Success responce:
Status 200 OK
{
    "Id": "26e2f029-f797-40e9-b86e-01a0d2164075",
    "Website": "http://8i.com/",
    "Name": "8i",
    "Logo": "http://www.dolbyventures.com/wp-content/uploads/2015/10/8i-logo-landscape.png",
    "Description": "is transforming video capture and playback to deliver a new medium for all display devices.",
    "Twitter": [],
    "Facebook": [],
    "Instagram": [],
    "LinkedIn": [],
    "Medium": [],
    "Youtube": [],
    "Email": [],
    "AngelList": [],
    "FacebookReview": null,
    "FacebookLikes": null,
    "FacebookCheckIns": null,
    "Phone": [],
    "Founded": null,
    "Location": [],
    "FounderName": null,
    "Tags": [
        "Video",
        "Virtual reality",
        "3D",
        "Augmented reality",
        "Platform"
    ]
}
The data response payload contains specific startup.
This parameters can be used with collections and specific records.
Retrieving Related Entities
Related Startup entities
| Funds | Startup’s venture funds | 
GET https://vcapi.parsers.me/v2/startups/{startupId}?$expand=Funds
Authorization: Bearer {your-auth-token} or query string parameter
Success responce:
Status 200 OK
{
    "Id": "26e2f029-f797-40e9-b86e-01a0d2164075",
    "Website": "http://8i.com/",
    "Name": "3D Video of People",
    "Funds": [
        {
            "Id": "8abb4e27-b6c2-4a08-8604-5f796d86efa5",
            "Name": "Bertelsmann Digital Media Investments",
            "Website": "https://www.bdmifund.com",
            "InvestmentDateStamp": null
        }
    ]
}
This parameters can be used with collections and specific records.