Applications
- API overview
- Authentication
- Data export
- Basics
- Data
- VC Fund
- Startup
- Funding rounds
- Valuations
- Applications
- Person
- News
- Search
Use the startups/applications node to get information about startup's applications.
A limit on the number of objects to be returned, between 1 and 100.
Retrieving Applications
GET https://vcapi.parsers.me/v2/startups/applications/
Authorization: Bearer {your-auth-token} or query string parameter
Success responce:
Status 200 OK
[
{
"StartupId": "6be53539-024d-4e7f-b0f1-000a2bc2ea2e",
"GooglePlay": "https://play.google.com/store/apps/details?id=com.restoplace.webview",
"AppStore": "https://apps.apple.com/ru/app/restoplace/id1500429225",
"ChromeStore": null,
"FirefoxAddOn": null,
"MicrosoftEdgeExtension": null,
"ShopifyStore": null,
"WordPressPlugin": null
},
...
{
"StartupId": "3c789e4a-7645-4405-b79f-000a8873ec4b",
"GooglePlay": "https://play.google.com/store/apps/details?id=net.sf.golly",
"AppStore": null,
"ChromeStore": null,
"FirefoxAddOn": null,
"MicrosoftEdgeExtension": null,
"ShopifyStore": null,
"WordPressPlugin": null
}
]
The data response payload contains the array of Applications.
Funding Round properties
StartupId | Startup Id |
GooglePlay | Google Play application |
AppStore | App Store application |
ChromeStore | Chrome store application |
FirefoxAddOn | Firefox AddOn |
MicrosoftEdgeExtension | Microsoft Edge extension |
ShopifyStore | Shopify store application |
WordPressPlugin | WordPress plugin |
Retrieving Applications of specific Startup
GET https://vcapi.parsers.me/v2/startups/{startupId}/applications/
Authorization: Bearer {your-auth-token} or query string parameter
Success responce:
Status 200 OK
{
"StartupId": "6be53539-024d-4e7f-b0f1-000a2bc2ea2e",
"GooglePlay": "https://play.google.com/store/apps/details?id=com.restoplace.webview",
"AppStore": "https://apps.apple.com/ru/app/restoplace/id1500429225",
"ChromeStore": null,
"FirefoxAddOn": null,
"MicrosoftEdgeExtension": null,
"ShopifyStore": null,
"WordPressPlugin": null
}
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 StartupId of the object, which is always returned.
GET https://vcapi.parsers.me/v2/startups/{startupId}/applications/?$select=GooglePlay
Authorization: Bearer {your-auth-token} or query string parameter
Success responce:
Status 200 OK
{
"StartupId": "6be53539-024d-4e7f-b0f1-000a2bc2ea2e",
"GooglePlay": "https://play.google.com/store/apps/details?id=com.restoplace.webview"
}
This parameters can be used with collections and specific records.