GET
/
v5
/
datasets
curl --request GET \
  --url https://api.egp.scale.com/v5/datasets \
  --header 'x-api-key: <api-key>'
{
  "object": "list",
  "items": [
    {
      "id": "<string>",
      "object": "dataset",
      "name": "<string>",
      "description": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "created_by_user_id": "<string>",
      "archived_at": "2023-11-07T05:31:56Z",
      "tags": [
        "<string>"
      ],
      "current_version_num": 123
    }
  ],
  "limit": 100,
  "total": 123,
  "has_more": true
}

Authorizations

x-api-key
string
header
required

Query Parameters

tags
string[] | null
include_archived
boolean
default:false
starting_after
string | null
ending_before
string | null
limit
integer
default:100
Required range: 1 <= x <= 1000
name
string | null

Response

200
application/json
Successful Response

The response is of type object.