⚙️ Settings
Profile
Manage your profile for the ultimate ai app.
Subscription & Plan
50 docs/mo scan using machine learning, full PDF reports, access to the ai bot, doc comparison.
23 out of 50 docs this month (46%)
Renewal Date: April 1, 2026
Notifications
Preferences
Appearance
Security
Don't share your API key or passwords with any public agent.
| Device | Location | Last Active | Status |
|---|---|---|---|
| Chrome — Windows | Riyadh | Active now | Active now |
| Safari — iPhone | Jeddah | 2 days ago |
API & Integration
Integrate our ai tools to create artificial intelligence workflows or even create ai chat experiences. Build an autonomous system.
sk-xxxx...xxxx
1,247 requests this month out of 10,000
curl -X POST https://api.contractai.sa/v1/analyze \ -H "Authorization: Bearer sk-xxxx" \ -F "file=@contract.pdf" \ -F "type=supply"
import requests
requests.post(
"https://api.contractai.sa/v1/analyze",
headers={"Authorization": "Bearer sk-xxxx"},
files={"file": open("contract.pdf", "rb")},
data={"type": "supply"},
)
const formData = new FormData();
formData.append("file", file);
formData.append("type", "supply");
fetch("https://api.contractai.sa/v1/analyze", {
method: "POST",
headers: { Authorization: "Bearer sk-xxxx" },
body: formData,
});