Valuations

 

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

Retrieving Post Valuations

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

Success responce:

Status 200 OK

[
    {
        "Id": "0306a2aa-a0de-4c69-8838-0031678161b4",
        "Amount": 3900000000,
        "Date": "2021-08-24T00:00:00"
    },
...
    {
        "Id": "308c7aa0-35f0-4a70-9d11-003fa3eb2548",
        "Amount": 2000000000,
        "Date": "2021-05-27T00:00:00"
    },
]

The data response payload contains the array of Post Valuations.

Post Valuation properties

Id Post Valuation Id
Date Date that the Valuation was published
Amount Total amount in USD

Retrieving specific Post Valuation

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

Success responce:

Status 200 OK

{
    "Id": "0306a2aa-a0de-4c69-8838-0031678161b4",
    "Amount": 3900000000,
    "Date": "2021-08-24T00:00:00"
}

The data response payload contains specific Post Valuation.

Retrieving Post Valuations of specific Startup

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

Success responce:

Status 200 OK

[
    {
        "Id": "bc833903-836a-41b3-9eb8-04ad7692b84a",
        "Amount": 150000000,
        "Date": "2012-12-14T00:00:00"
    }
]

You can also use the Expand parameter for startups node  to get Post Valuations related to specific Startup

When you query a post valuation 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/postvaluations/{postvaluationId}?$select=Amount
Authorization: Bearer {your-auth-token} or query string parameter

Success responce:

Status 200 OK

{
    "Id": "bc833903-836a-41b3-9eb8-04ad7692b84a",
    "Amount": 150000000
}

This parameters can be used with collections and specific records.

Related Post Valuation entities

ValuationObject Related Startup
References News related to Valuation

Retrieving Post Valuation with Valuation Object

Partners properties

Id Startup or Fund depending on the PartnerType
PartnerType Partner Type (Startup, Fund)
GET https://vcapi.parsers.me/v2/startups/postvaluations/{postvaluationsId}?$expand=ValuationObject
Authorization: Bearer {your-auth-token} or query string parameter

Success responce:

Status 200 OK

{
    "Id": "bc833903-836a-41b3-9eb8-04ad7692b84a",
    "Amount": 150000000,
    "Date": "2012-12-14T00:00:00",
    "ValuationObject": {
        "Id": "791fe69b-8fbe-4fc6-9b68-e2c906e89b29",
        "PartnerType": "Startup"
    }
}

Retrieving Post Valuation 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/startups/postvaluations/{postvaluationId}?$expand=References
Authorization: Bearer {your-auth-token} or query string parameter

Success responce:

Status 200 OK

{
    "Id": "bc833903-836a-41b3-9eb8-04ad7692b84a",
    "Amount": 150000000,
    "Date": "2012-12-14T00:00:00",
    "References": [
        {
            "Id": "50f15c28-248a-4f3f-be14-1953945327fa",
            "Title": "AngelList Raising A Big Round, To Be Valued at $150 Million Or More",
            "Date": "2012-12-14T00:00:00",
            "Description": "AngelList, a service that matches early...",
            "Category": "Angellist",
            "Author": "Leena Rao",
            "Source": "https://techcrunch.com/2012/12/14/angellist-to-be-valued-at-150-million-or-more/"
        }
    ]
}

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

Success responce:

Status 200 OK

{
    "Id": "bc833903-836a-41b3-9eb8-04ad7692b84a",
    "References": [
        {
            "Id": "50f15c28-248a-4f3f-be14-1953945327fa",
            "Title": "AngelList Raising A Big Round, To Be Valued at..."
        }
    ]
}

This parameters can be used with collections and specific records.