Getting Started
API Reference
- GETPing Health
- GETGet Available Models
- POSTRetrieve Chunks
- POSTRetrieve Chunks Grouped
- POSTRetrieve Documents
- POSTBatch Get Documents
- POSTBatch Get Chunks
- POSTQuery Completion
- GETGet Chat History
- GETGet Available Models For Selection
- POSTAgent Query
- GETGet Usage Stats
- GETGet Recent Usage
- POSTGenerate Local Uri
- POSTGenerate Cloud Uri
- DELDelete Cloud App
- GETList Chat Conversations
- PATCHUpdate Chat Title
Documents
Folders
Workflows
model-config
Logs
Graph
models
Save Api Key
Save API key for a provider.
POST
/
api-keys
JavaScript
Copy
Ask AI
import Morphik from 'morphik';
const client = new Morphik({
apiKey: 'My API Key',
});
const apiKey = await client.apiKeys.create({ api_key: 'api_key', provider: 'provider' });
console.log(apiKey);
Copy
Ask AI
{}
Headers
Body
application/json
Request to save API keys.
Response
200
application/json
Successful Response
The response is of type object
.
Was this page helpful?
JavaScript
Copy
Ask AI
import Morphik from 'morphik';
const client = new Morphik({
apiKey: 'My API Key',
});
const apiKey = await client.apiKeys.create({ api_key: 'api_key', provider: 'provider' });
console.log(apiKey);
Copy
Ask AI
{}
Assistant
Responses are generated using AI and may contain mistakes.