Skip to main content

List Sub-Catalog Collections

GET 

/catalogs/:subCatalogId/collections

List the collections that belong to a Sub-Catalog

Request

Path Parameters

    subCatalogId stringrequired

    Identifier (name) of a specific collection

Query Parameters

    sortby string

    An array of property names, prefixed by either "+" for ascending or "-" for descending. If no prefix is provided, "+" is assumed. Currently only two properties are supported: datetime and id.

    Examples:

    Example: id

    orderby string

    (Deprecated in favor of sortby) SQL-style ORDER BY clause. The only properties results can be ordered by are "id" and "datetime". You can use ASC and DESC modifiers on each column. If not specified then orderby defaults to "datetime DESC, id ASC".

    Examples:

    Example: id

    limit integer

    Maximum number of collections to return

    Example: 10
    page integer

    Page number to retrieve. First page is numbered 1.

    Example: 2

Responses

Return list of collection definitions

Response Headers
  • X-Maxar-RequestId any
Schema
    collections object[]required
  • Array [
  • stac_version stringrequired
    id stringrequired
    title string
    description stringrequired
    links object[]
  • Array [
  • href urlrequired
    rel stringrequired
    type string
    title string
  • ]
  • ]
  • links object[]

    An array of links. Can be used for pagination, e.g. by providing a link with the next relation type.

  • Array [
  • href urlrequired
    rel stringrequired
    type string
    title string
  • ]
Loading...