Fetch Datasets By Query
GET/v1/search/datasets
Fetches datasets based on query parameters
Request
Query Parameters
Search term to match on project name or description
Responses
- 200
- 422
Successful Response
- application/json
- Schema
- Example (from schema)
Schema
Array [
- MOD1
- MOD1
- MOD1
Array [
]
]
results
object[]
A list of search results
Project ID
The name of this project
A description for this project.
Total datums in project.
The timestamp this project was created.
The nickname who created this project.
The project display thumbnail.
The project url-safe slug
The organization url-safe slug
The organization nickname
creator_picture
object
The creator picture
anyOf
string
projection_alias
object
The projection alias
anyOf
string
tags
object
required
Tags associated with the project from dataset_tags table.
anyOf
string
The timestamp the map index job finished.
{
"results": [
{
"project_id": "string",
"project_name": "string",
"description": "string",
"total_datums_in_project": 0,
"created_timestamp": "2024-07-29T15:51:28.071Z",
"nickname": "string",
"thumbnail": "string",
"slug": "string",
"organization_slug": "string",
"organization_name": "string",
"creator_picture": "string",
"projection_alias": "string",
"tags": [
null
],
"index_job_end_timestamp": "2024-07-29T15:51:28.071Z"
}
]
}
Validation Error
- application/json
- Schema
- Example (from schema)
Schema
Array [
Array [
- MOD1
- MOD2
]
]
detail
object[]
loc
object[]
required
anyOf
string
integer
{
"detail": [
{
"loc": [
"string",
0
],
"msg": "string",
"type": "string"
}
]
}