GET
/
search
curl --request GET \
  --url https://api.datagrid.com/v1/search \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "data": [
    {
      "object": "search_result_item",
      "score": 123,
      "updated_at": "2023-11-07T05:31:56Z",
      "title": "<string>",
      "summary": "<string>",
      "content": [
        "<string>"
      ],
      "resource": {
        "object": "knowledge_metadata",
        "id": "<string>",
        "name": "<string>",
        "navigation_item": {
          "object": "navigation_item_metadata",
          "id": "<string>",
          "name": "<string>",
          "emoticon": "<string>",
          "source_media_type": "<string>",
          "item_type": "<string>",
          "url": "<string>"
        },
        "url": "<string>"
      }
    }
  ],
  "next": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

query
string
required
next
string

A cursor to use in pagination to continue a query from the previous request. This is automatically added when the request has more results to fetch.

limit
integer
default:20

The limit on the number of objects to return, ranging between 1 and 100.

Required range: 1 <= x <= 100

Response

200 - application/json
Search results

The response is of type object.