Skip to main content
POST
/
search
Search
curl --request POST \
  --url https://api.pal.ai/v1/search \
  --header 'Content-Type: application/json' \
  --data '
{
  "applicationId": "<string>",
  "query": "<string>"
}
'
{
  "results": {
    "documents": [
      {
        "id": "<string>",
        "title": "<string>",
        "contentPreview": "<string>",
        "url": "<string>"
      }
    ],
    "sections": [
      {
        "id": "<string>",
        "applicationId": "<string>",
        "heading": "<string>",
        "text": "<string>",
        "documentId": "<string>",
        "indexOrder": "<string>",
        "indexId": "<string>",
        "indexName": "<string>",
        "indexInfo": "<string>",
        "deletedAt": "<string>",
        "updatedAt": "<string>",
        "createdAt": "<string>"
      }
    ]
  }
}

Body

application/json
applicationId
string
query
string

Response

OK

results
SearchResults · object