Skip to main content
GET
/
v1
/
ais
/
{ai_id}
Get AI
curl --request GET \
  --url https://api.gbase.ai/v1/ais/{ai_id}
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "created_at": "2023-11-07T05:31:56Z",
  "name": "<string>",
  "discrible": "<string>",
  "subject_name": "<string>",
  "prompt": "<string>",
  "robot_type": "rag",
  "ai_type": "private",
  "ai_model": "file",
  "ai_status": "ready",
  "user": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "user_id": "<string>",
    "email": "<string>",
    "name": "<string>",
    "salt": "<string>",
    "picture": "<string>",
    "locale": "<string>",
    "corporate": false,
    "is_independent": false
  },
  "apis": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "created_at": "2023-11-07T05:31:56Z",
      "function_call_name": "<string>",
      "openapi_url": "<string>",
      "server_url": "<string>",
      "path": "<string>",
      "method": "<string>",
      "header_authorization": "<any>",
      "function_type": "<string>",
      "function_status": "<string>",
      "share_status": "<string>",
      "user_id": "<string>",
      "function_call_description": "<string>",
      "matching_keywords": "<any>",
      "llm_sta": true,
      "body": "<any>",
      "auth_token_curl": "<any>",
      "body_required": "<any>",
      "request_explanation": "<string>"
    }
  ],
  "datasets": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "data_status": "init",
      "name": "<string>",
      "description": "<string>",
      "metadata": "<any>",
      "url_rules": "<any>",
      "user_id": "<string>"
    }
  ],
  "questions": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "question": "<string>",
      "question_type": "generator"
    }
  ],
  "file_count": 123,
  "configs": {}
}

Path Parameters

ai_id
string<uuid>
required

Response

Successful Response

created_at
string<date-time>
required
name
string
required
Maximum length: 100
user
object
required
apis
AgentFunctionCallApi · object[]
required
datasets
Dataset · object[]
required
questions
Question · object[]
required
file_count
integer
required
configs
object
required
id
string<uuid>
discrible
string | null
subject_name
string | null
prompt
string | null
robot_type
string
default:rag

RAG: rag<br/>DIGITAL_HUMAN: digital_human<br/>AGENT: agent

Maximum length: 100
ai_type
string
default:private

DEFAULT: default<br/>DEMO: demo<br/>PUBLIC: public<br/>PRIVATE: private<br/>TRENDING: trending

Maximum length: 20
ai_model
string
default:file

FILE: file<br/>WEBSITE: website<br/>DIGITAL_HUMAN: digital_human<br/>AGENT: agent

Maximum length: 20
ai_status
string
default:ready

INIT: init<br/>READY: ready<br/>FROZEN: frozen

Maximum length: 20
I