Funds Raised

 

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

Retrieving Funds Raised

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

Success responce:

Status 200 OK

[
     {
        "Id": "5d6ab786-e8eb-444c-8e15-006ca2dec938",
        "Amount": 800000000,
        "Date": "2020-10-15T07:48:38"
    },
...
    {
        "Id": "83027c12-55c7-44de-8079-007cda517e5c",
        "Amount": 597500000,
        "Date": "2015-04-30T00:00:00"
    },
]

The data response payload contains the array of Funds Raised.

Funds Raised properties

Id Id
Date Date that the Funds Raised was published
Amount Total amount in USD raised in Funds Raised

Retrieving specific Funds Raised

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

Success responce:

Status 200 OK

{
    "Id": "5d6ab786-e8eb-444c-8e15-006ca2dec938",
    "Amount": 800000000,
    "Date": "2020-10-15T07:48:38"
}

The data response payload contains specific entry.

Retrieving Funds Raised of specific Fund

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

Success responce:

Status 200 OK

[
    {
        "Id": "9c52897e-c72c-406d-b151-e56c6afce02f",
        "Amount": 10000000,
        "Date": "2012-10-18T00:00:00"
    }
]

When you query a funds raised 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/funds/fundsraised/{fundsraisedId}?$select=Amount
Authorization: Bearer {your-auth-token} or query string parameter

Success responce:

Status 200 OK

{
    "Id": "5d6ab786-e8eb-444c-8e15-006ca2dec938",
    "Amount": 800000000
}

This parameters can be used with collections and specific records.

Partners Funds Raised Partners
References News related to Funds Raised

Retrieving Funds Raised with Partners

Partners properties

Id Startup or Fund depending on the PartnerType
PartnerType Partner Type (Startup, Fund)
InvestmentRole Investment Role (InvestmentObject, Investor, LedInvestor)
GET https://vcapi.parsers.me/v2/funds/fundsraised/{fundsraisedId}?$expand=Partners
Authorization: Bearer {your-auth-token} or query string parameter

Success responce:

Status 200 OK

{
    "Id": "5d6ab786-e8eb-444c-8e15-006ca2dec938",
    "Amount": 800000000,
    "Date": "2020-10-15T07:48:38",
    "Partners": [
        {
            "Id": "1edb76dd-4ca2-4361-8d31-cdfc4f2338cb",
            "PartnerType": "Fund",
            "InvestmentRole": "InvestmentObject"
        }
    ]
}

Retrieving Funds Raised with references

Reference properties

Id News Id
Title News title
Date News published date
Description News description
Category News category
Author News author
Source Source website page
GET https://vcapi.parsers.me/v2/funds/fundsraised/{fundsraisedId}?$expand=References
Authorization: Bearer {your-auth-token} or query string parameter

Success responce:

Status 200 OK

{
    "Id": "5d6ab786-e8eb-444c-8e15-006ca2dec938",
    "Amount": 800000000,
    "Date": "2020-10-15T07:48:38",
    "References": [
        {
            "Id": "c8caec4f-f07c-41de-8d20-b34d8adc06a1",
            "Title": "Endpoints News: Canaan raises another $800M as it launches its next fund with an emphasis on biotech",
            "Date": "2020-10-15T07:48:38",
            "Description": null,
            "Category": "Highlight",
            "Author": null,
            "Source": "https://www.canaan.com/latest"
        }
    ]
}

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/funds/fundsraised/{fundsraisedId}?$expand=References&$select=Reference.Title,Reference.Description
Authorization: Bearer {your-auth-token} or query string parameter

Success responce:

Status 200 OK

{
    "Id": "5d6ab786-e8eb-444c-8e15-006ca2dec938",
    "References": [
        {
            "Id": "c8caec4f-f07c-41de-8d20-b34d8adc06a1",
            "Title": "Endpoints News: Canaan raises another $800M as it launches its next fund with an emphasis on biotech",
            "Description": null
        }
    ]
}

This parameters can be used with collections and specific records.