Startnext Crowdfunding API (1.0.0)

Download OpenAPI specification:

Public and Project API for Startnext crowdfunding platform

ApiKey

Endpoints accessible with Project API Key

List project blog entries

Returns a paginated list of blog entries for a specific project. Internal access allowed without API Key. External access requires a Project API Key with blog:read scope.

Authorizations:
projectApiKey
path Parameters
link_caption
required
string

Project URL slug

query Parameters
blog_type
string
Default: "text"

Blog entry type (text, story)

offset
integer
Default: 0

Result offset

limit
integer
Default: 50

Result limit (max 100)

Responses

Response samples

Content type
application/json
{
  • "data": [
    ],
  • "meta": {
    }
}

List project incentives (API Key required)

Returns a paginated list of incentives for a specific project. Requires a Project API Key with incentives:read scope.

Authorizations:
projectApiKey
path Parameters
link_caption
required
string

Project URL slug

query Parameters
offset
integer
Default: 0

Result offset

limit
integer
Default: 50

Result limit (max 100)

Responses

Response samples

Content type
application/json
{
  • "data": [
    ],
  • "meta": {
    }
}

Get project details

Returns full project details. Supports optional API Key authentication for extended access.

path Parameters
link_caption
required
string

Project URL slug

Responses

Response samples

Content type
application/json
{
  • "project": {
    },
  • "status": 0
}

List project subscribers (API Key required)

Returns all subscribers (fans) for a project. Requires a Project API Key with subscribers:read scope.

Authorizations:
projectApiKey
path Parameters
link_caption
required
string

Project URL slug

query Parameters
offset
integer
Default: 0

Result offset

limit
integer
Default: 50

Result limit (max 100)

Responses

Response samples

Content type
application/json
{
  • "data": [
    ],
  • "meta": {
    }
}

List project wall entries (API Key required)

Returns all wall entries (Pinnwand) for a project. Requires a Project API Key with wall:read scope.

Authorizations:
projectApiKey
path Parameters
link_caption
required
string

Project URL slug

query Parameters
offset
integer
Default: 0

Result offset

limit
integer
Default: 50

Result limit (max 100)

Responses

Response samples

Content type
application/json
{
  • "data": [
    ],
  • "meta": {
    }
}

List public project fundings (for streams)

Returns a paginated list of public fundings for a project (timestamp and supporter name only). Suitable for live streams/feeds. Internal access allowed without API Key. External access requires a Project API Key with fundings:read scope.

Authorizations:
projectApiKey
path Parameters
link_caption
required
string

Project URL slug

query Parameters
funding_date_min
integer

Min funding date (UNIX timestamp)

funding_date_max
integer

Max funding date (UNIX timestamp)

offset
integer
Default: 0

Result offset

limit
integer
Default: 10

Result limit

Responses

Response samples

Content type
application/json
{
  • "data": [
    ],
  • "total": 0
}

List all project orders (API Key required)

Returns all successful orders for a project. Requires a Project API Key with orders:read scope. Project must be successfully funded (>=100%).

Authorizations:
projectApiKey
path Parameters
link_caption
required
string

Project URL slug

query Parameters
offset
integer
Default: 0

Result offset

limit
integer
Default: 50

Result limit (max 100)

Responses

Response samples

Content type
application/json
{
  • "data": [
    ],
  • "total": 0
}