Funding Rounds

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

Retrieving Funding Rounds

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

Success responce:

Status 200 OK

[
    {
        "Id": "2b796157-ec9d-4f3a-8456-0002c2ed4f58",
        "Amount": 4000000,
        "Series": "Series B",
        "Date": "2019-11-18T00:00:00"
    },
    ...
    {
        "Id": "ddf73889-12aa-45d1-8a68-0004c4d76fa4",
        "Amount": 2223399,
        "Series": "Seed",
        "Date": "2019-12-19T00:00:00"
    }
]

The data response payload contains the array of Funding Rounds.

Funding Round properties

IdFunding Round Id
DateDate that the Funding Round was published
SeriesFunding Round type
AmountTotal amount in USD raised in Funding Round
GET https://vcapi.parsers.me/v2/startups/fundingrounds/{fundingroundId}
Authorization: Bearer {your-auth-token} or query string parameter

Success responce:

Status 200 OK

{
    "Id": "2b796157-ec9d-4f3a-8456-0002c2ed4f58",
    "Amount": 4000000,
    "Series": "Series B",
    "Date": "2019-11-18T00:00:00"
}

The data response payload contains specific Funding Round.

When you query a funding round it returns a set of basic fields by default, as the examples above show. However, you can specify which fields you want returned by using the select parameter and listing each field. This overrides the defaults and returns the fields you specify, and the Id of the object, which is always returned.

GET https://vcapi.parsers.me/v2/startups/fundingrounds/{fundingroundId}?$select=Amount
Authorization: Bearer {your-auth-token} or query string parameter

Success responce:

Status 200 OK

{
    "Id": "2b796157-ec9d-4f3a-8456-0002c2ed4f58",
    "Amount": 4000000
}

This parameters can be used with collections and specific records.

PartnersFunding Round Partners
ReferencesNews related to Funding Round

Retrieving Funding Round with Partners

Partners properties

IdStartup or Fund depending on the PartnerType
PartnerTypePartner Type (Startup, Fund)
InvestmentRoleInvestment Role (InvestmentObject, Investor, LedInvestor)
GET https://vcapi.parsers.me/v2/startups/fundingrounds/{fundingroundId}?$expand=Partners
Authorization: Bearer {your-auth-token} or query string parameter

Success responce:

Status 200 OK

{
    "Id": "2b796157-ec9d-4f3a-8456-0002c2ed4f58",
    "Amount": 4000000,
    "Series": "Series B",
    "Date": "2019-11-18T00:00:00",
    "Partners": [
        {
            "Id": "45f4d348-7bd2-48ff-95da-c564131764c0",
            "PartnerType": "Startup",
            "InvestmentRole": "InvestmentObject"
        }
    ]
}

Retrieving Funding Round with references

Reference properties

IdNews Id
TitleNews title
DateNews published date
DescriptionNews description
CategoryNews category
AuthorNews author
SourceSource website page
GET https://vcapi.parsers.me/v2/startups/fundingrounds/{fundingroundId}?$expand=References
Authorization: Bearer {your-auth-token} or query string parameter

Success responce:

Status 200 OK

{
    "Id": "2b796157-ec9d-4f3a-8456-0002c2ed4f58",
    "Amount": 4000000,
    "Series": "Series B",
    "Date": "2019-11-18T00:00:00",
    "References": [
        {
            "Id": "5a29cfc5-3648-48b6-a081-f3a47fd27b9e",
            "Title": "French ride-sharing startup, Heetch aims to take...",
            "Date": "2019-11-20T00:00:00",
            "Description": "Based out of Paris, Heetch, a ride-sharing app...",
            "Category": "app\r\nFrench Startups\r\nfunding\r\nMobility",
            "Author": "Editorial team",
            "Source": "https://siliconcanals.com/news/startups/french-ride..."
        }
    ]
}

You can specify which fields you want returned by using the select parameter and listing each field. This overrides the defaults and returns only the fields you specify, and the Id of the object, which is always returned.

GET https://vcapi.parsers.me/v2/startups/fundingrounds/{fundingroundId}?$expand=References&$select=Reference.Title,Reference.Description
Authorization: Bearer {your-auth-token} or query string parameter

Success responce:

Status 200 OK

{
    "Id": "2b796157-ec9d-4f3a-8456-0002c2ed4f58",
    "References": [
        {
            "Id": "5a29cfc5-3648-48b6-a081-f3a47fd27b9e",
            "Title": "French ride-sharing startup, Heetch..",
            "Description": "Based out of Paris, Heetch, a ride-sharing app..."
        }
    ]
}

This parameters can be used with collections and specific records.