www.saas-marketplaces.com API Documentation (1)

Download OpenAPI specification:Download

Get all marketplaces

Responses

200

Successful response

get /marketplaces
https://www.saas-marketplaces.com/api/1/marketplaces

Response samples

Content type
application/json
Copy
Expand all Collapse all
{
  • "start": 0,
  • "total": 50,
  • "size": 50,
  • "values":
    [
    ]
}

Get marketplace

path Parameters
id
required
integer
Example: 1000

Responses

200

Successful response if marketplace was found by provided id.

404

Not found if marketplace was not found by provided id or id was missing.

get /marketplaces/{id}
https://www.saas-marketplaces.com/api/1/marketplaces/{id}

Response samples

Content type
application/json
Copy
Expand all Collapse all
{
  • "id": 1,
  • "name": "Example Marketplace",
  • "description": "Example Inc. is operating a marketplace for project management software.",
  • "category": "project management",
  • "key": "example",
  • "keywords":
    [
    ],
  • "licensing": "AUTO",
  • "app_costs":
    [
    ]
}

Get all categories

Responses

200

Successful response

get /categories
https://www.saas-marketplaces.com/api/1/categories

Response samples

Content type
application/json
Copy
Expand all Collapse all
{
  • "categories":
    [
    ]
}

Search marketplaces

path Parameters
searchKey
required
string
Example: project management

Responses

200

Successful response if at least one marketplace was found by provided searchKey.

404

Not found if no marketplace was not found by provided searchKey or searchKey was missing.

get /search/{searchKey}
https://www.saas-marketplaces.com/api/1/search/{searchKey}

Response samples

Content type
application/json
Copy
Expand all Collapse all
{
  • "total": 0,
  • "values":
    [
    ]
}