GET
/
indices
curl --location 'https://document-query.pyqai.com/indices?account_id=ExampleAccountID' \
--header 'Authorization: ExampleToken' \
--data ''
{
    "response": [
        "Index1",
        "Index2",
        "Index3"
    ]
}

Query Parameters

account_id
int
required
This is your account ID.

Headers

Authorization
string
required
This is your API token associated with your account.

Response

response
list
List of all indicies associated with your account ID.
curl --location 'https://document-query.pyqai.com/indices?account_id=ExampleAccountID' \
--header 'Authorization: ExampleToken' \
--data ''
{
    "response": [
        "Index1",
        "Index2",
        "Index3"
    ]
}