Skip to main content
POST
https://api.aisa.one/apis/v1
/
scholar
/
search
/
mixed
Smart search combining web and academic results
curl --request POST \
  --url https://api.aisa.one/apis/v1/scholar/search/mixed \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "results": [
    {
      "title": "<string>",
      "link": "<string>",
      "snippet": "<string>",
      "authors": [
        "<string>"
      ],
      "number_of_citations": 1,
      "relevance_score": 0.5
    }
  ]
}
Run a hybrid search that can combine web and scholarly results in one response. Best for: Research tasks that need both academic papers and broader web context.
Scholar search endpoints use POST with parameters in the query string. Do not send query or max_num_results as a JSON or form body.

Example

curl -X POST "https://api.aisa.one/apis/v1/scholar/search/mixed?query=self-correcting%20agent%20frameworks&max_num_results=5" \
  -H "Authorization: Bearer ${AISA_API_KEY}"

Response

Returns a search id and a results array. Result objects may include web fields, scholar fields, or both depending on the selected source.

Authorizations

Authorization
string
header
required

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

Query Parameters

query
string
required

Search query for scholarly materials

Example:

"machine learning"

max_num_results
integer
default:10

Maximum number of search results to return, up to 100

Required range: 1 <= x <= 100
as_ylo
integer | null

Year of publication lower bound

Required range: 1900 <= x <= 2030
as_yhi
integer | null

Year of publication upper bound

Required range: 1900 <= x <= 2030

Response

Successful search response

id
string
required

Unique identifier for the search request

results
object[]
required

List of smart search results combining web and academic content

search_type
enum<string>

Type of search results included

Available options:
web,
academic,
hybrid