v1

latestOpenAPI 3.0.22026-07-24800528.1 KB
Marketplace

List all programs

Returns a list of all active marketplace-listed programs and their details. The programs are returned sorted by creation date by default, with the most recent programs appearing first.

get/v2/marketplace/programs

Query parameters

min_createdinteger

Applies a minimum epoch timestamp (ms) filter to the response created_at.

max_createdinteger

Applies a maximum epoch timestamp (ms) filter to the response created_at.

categorystring

Marketplace category of the programs

limitinteger

A limit on the number of items to be returned. Limits can range between 1 and 250, and the default is 10.

starting_afterstring

A cursor for use in pagination, starting_after takes in an item key and the subsequent call will return the following items in the list. This is mutually exclusive with ending_before.

ending_beforestring

A cursor for use in pagination, ending_before takes in an item key and the subsequent call will return the prior items in the list. This is mutually exclusive with starting_after.

Response

Returns a list of all active marketplace-listed programs and their details. The programs are returned sorted by creation date by default, with the most recent programs appearing first.

messagestring required
statusinteger required

Example response

{
  "data": {
    "items": [
      {
        "country": "Canada",
        "id": 1234567,
        "key": "comp_jei0wrhj320",
        "logo": "file_fdmni0f3420fnw",
        "name": "Thing.io",
        "website": "https://thing.io"
      }
    ]
  }
}