- Retrieval
- Documents
- GETList documents
- POSTCreate a new document
- POSTExport documents to CSV
- GETExport multiple documents as zip
- GETRetrieve a document
- DELDelete a document
- GETList document chunks
- GETDownload document content
- DELDelete documents by filter
- GETList document collections
- POSTExtract entities and relationships
- POSTDeduplicate entities
- POSTExport document entities to CSV
- POSTExport document relationships to CSV
- POSTSearch document summaries
- Graphs
- GraphsEntities
- GraphsRelationships
- GraphsCommunities
- Indices
- Users
- GETList Users
- POSTRegister
- POSTExport users to CSV
- POSTVerify user's email address
- POSTSend Verification Email
- POSTAuthenticate user and get tokens
- POSTLog out current user
- POSTRefresh access token
- POSTChange user password
- POSTRequest password reset
- POSTReset password with token
- GETGet authenticated user details
- GETGet user details
- POSTUpdate user information
- DELDelete user
- GETList user's collections
- POSTAdd user to collection
- DELRemove user from collection
- GETList User API Keys
- POSTCreate User API Key
- DELDelete User API Key
- GETFetch User Limits
- GETGoogle Authorize
- GETGoogle Callback
- GETGithub Authorize
- GETGithub Callback
- Collections
- GETList collections
- POSTCreate a new collection
- POSTExport collections to CSV
- GETGet collection details
- POSTUpdate collection
- DELDelete collection
- POSTAdd document to collection
- DELRemove document from collection
- GETList documents in collection
- GETList users in collection
- POSTAdd user to collection
- DELRemove user from collection
- POSTExtract entities and relationships
- GETGet a collection by name
- Conversations
- Prompts
- Chunks
- System
Request
1 import requests 2 3 # Retrieve a document (GET /v3/documents/:id) 4 response = requests.get( 5 "https://api.cloud.sciphi.ai/v3/documents/id", 6 headers={ 7 "Authorization": "Bearer ", 8 "X-Api-Key": "" 9 }, 10 ) 11 12 print(response.json())
Response