Home

Welcome to Autodrive, Dadosfera’s file-to-vector engine that lets you upload documents, turn them into embeddings, and ask natural-language questions against your own private knowledge base.

1 · Your Autodrive Base URL

Every Autodrive workspace runs on its own dedicated host.

https://<workspace-slug>.autodrive.dadosfera.ai

Replace <workspace-slug> with the slug you received when your Autodrive instance was provisioned.
All endpoint paths in this reference are relative to that base URL.


2 · Authentication

Autodrive uses HTTP Basic Auth.

FieldValue
UsernameYour Dadosfera admin/user login
PasswordYour Dadosfera password or token

Enter these credentials in the Auth → Basic tab of your REST client (Postman, Insomnia, etc.).
The client will generate the Authorization: Basic … header automatically.


3 · Typical Workflow (Chronological)

  1. Upload files
    POST /upload → returns dataset_id

  2. Ask a question

    • Document snippets only: POST /dataset/{dataset_id}/question
    • AI-generated answer: POST /dataset/{dataset_id}/ai_question
  3. Retrieve the result
    GET /dataset/{dataset_id}/question/{question_id}
    or
    GET /dataset/{dataset_id}/ai_question/{question_id}


4 · Quick Links to Endpoints

TaskEndpoint
Create a new dataset (upload files)POST /upload
List existing datasetsGET /datasets
Check dataset statusGET /dataset/{dataset_id}
Append more documentsPUT /dataset/{dataset_id}
Ask a question (snippets)POST /dataset/{dataset_id}/question
Ask a question (AI answer)POST /dataset/{dataset_id}/ai_question
Fetch snippetsGET /dataset/{dataset_id}/question/{question_id}
Fetch AI answerGET /dataset/{dataset_id}/ai_question/{question_id}
Service health-checkGET /health

5 · Next Steps

  1. Copy your workspace base URL.
  2. Authenticate with Basic Auth in your REST client.
  3. Follow the Typical Workflow above, or jump directly to any endpoint in the sidebar for full request-and-response details.

Happy querying!