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.
Field | Value |
---|---|
Username | Your Dadosfera admin/user login |
Password | Your 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)
-
Upload files
POST /upload
→ returnsdataset_id
-
Ask a question
- Document snippets only:
POST /dataset/{dataset_id}/question
- AI-generated answer:
POST /dataset/{dataset_id}/ai_question
- Document snippets only:
-
Retrieve the result
GET /dataset/{dataset_id}/question/{question_id}
or
GET /dataset/{dataset_id}/ai_question/{question_id}
4 · Quick Links to Endpoints
Task | Endpoint |
---|---|
Create a new dataset (upload files) | POST /upload |
List existing datasets | GET /datasets |
Check dataset status | GET /dataset/{dataset_id} |
Append more documents | PUT /dataset/{dataset_id} |
Ask a question (snippets) | POST /dataset/{dataset_id}/question |
Ask a question (AI answer) | POST /dataset/{dataset_id}/ai_question |
Fetch snippets | GET /dataset/{dataset_id}/question/{question_id} |
Fetch AI answer | GET /dataset/{dataset_id}/ai_question/{question_id} |
Service health-check | GET /health |
5 · Next Steps
- Copy your workspace base URL.
- Authenticate with Basic Auth in your REST client.
- Follow the Typical Workflow above, or jump directly to any endpoint in the sidebar for full request-and-response details.
Happy querying!