For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Dashboard
User GuideDeveloper GuidesAPI Reference
User GuideDeveloper GuidesAPI Reference
    • Overview
  • Runtype API
      • GETGet provider status
      • GETGet available embedding models
Dashboard
LogoLogo
Runtype APIProvider Status

Get provider status

GET
/v1/provider-status
GET
/v1/provider-status
$curl https://api.runtype.com/v1/provider-status \
> -H "Authorization: <apiKey>" \
> -H "Content-Type: application/json"
1{
2 "embeddingModels": {
3 "openai-embedding-ada-002": {
4 "configured": true,
5 "capabilities": {
6 "maxTokens": 8191,
7 "supportedLanguages": [
8 "en",
9 "es",
10 "fr"
11 ]
12 },
13 "integrationId": "intg_1234567890abcdef",
14 "lastUsed": "2024-06-10T15:22:30Z",
15 "metadata": {
16 "provider": "OpenAI",
17 "version": "1.0"
18 }
19 }
20 },
21 "integrations": {
22 "slack": {
23 "configured": true,
24 "capabilities": {
25 "messagePosting": true,
26 "fileUpload": true
27 },
28 "integrationId": "intg_slack_987654321",
29 "lastUsed": "2024-06-11T09:45:00Z",
30 "metadata": {
31 "workspace": "runtype-team",
32 "botUserId": "U12345678"
33 }
34 }
35 },
36 "lastUpdated": "2024-06-11T10:00:00Z",
37 "platformConfig": {
38 "postgresVectorEnabled": true
39 },
40 "vectorDatabases": {
41 "pinecone": {
42 "configured": true,
43 "capabilities": {
44 "maxDimensions": 1536,
45 "replication": true
46 },
47 "integrationId": "intg_pinecone_abc123",
48 "lastUsed": "2024-06-10T18:30:00Z",
49 "metadata": {
50 "region": "us-west1",
51 "indexName": "runtype-index"
52 }
53 }
54 }
55}

Returns configuration status for all providers (AI models, integrations, vector databases).

Was this page helpful?
Previous

Get available embedding models

Next
Built with

Authentication

AuthorizationBearer
API key or Clerk session token

Response

Provider status
embeddingModelsmap from strings to objects
integrationsmap from strings to objects
lastUpdatedstring
platformConfigobject
vectorDatabasesmap from strings to objects

Errors

401
Unauthorized Error
500
Internal Server Error