- Getting Started
- Essentials - Most used
- Auth
- Apps
- /appsPOST
- /apps/queryPOST
- /apps/{app_id}GET
- /apps/{app_id}PUT
- /apps/{app_id}/iconGET
- /apps/{app_id}/iconPUT
- /apps/{app_id}/versionsGET
- /apps/{app_id}/versionsPOST
- /apps/{app_id}/versions/{version}GET
- /apps/{app_id}/wizardGET
- /apps/{app_id}/wizardPUT
- /apps/{app_id}/wizardPOST
- /apps/{app_id}/wizardDELETE
- /apps/{app_id}/archivePOST
- Assignments
- Attachments
- Attributes
- Blocks
- /blocks
- /blocks/query
- /blocks/{block_id}
- /blocks/{block_id}
- /blocks/{block_id}
- /blocks/{block_id}/children
- /blocks/{block_id}/children/{child_id}
- /blocks/{block_id}/children/{child_id}
- /blocks/{block_id}/shallow-copy
- /blocks/{block_id}/deep-copy
- /blocks/ai-models
- /blocks/{block_id}/graph
- /blocks/views
- /blocks/views
- /blocks/views/{view_id}
- /blocks/views/{view_id}
- /blocks/views/{view_id}
- Docs
- Publications
- /publications/query
- /publications/{publication_id}
- /publications/{publication_id}
- /publications/{publication_id}
- /publications/{publication_id}/attachments
- /publications/{publication_id}/data
- /publications/{publication_id}/data
- /publications/views
- /publications/views
- /publications/views/{view_id}
- /publications/views/{view_id}
- /publications/views/{view_id}
- Teams
- /teams
- /teams
- /teams/current
- /teams/groups
- /teams/groups
- /teams/groups/{group_id}
- /teams/groups/{group_id}
- /teams/groups/{group_id}/apps
- /teams/groups/{group_id}/apps
- /teams/groups/{group_id}/apps/{app_id}
- /teams/groups/{group_id}/users
- /teams/groups/{group_id}/users
- /teams/groups/{group_id}/users/{user_id}
- /teams/users
- /teams/users
- /teams/users/{user_id}
- /teams/users/{user_id}
- /teams/billing
- /teams/billing/report
- /teams/logs
- Tokens
- Users
/apps/{app_id}
GET
https://api.thinkeo.io/v0/apps/{app_id}
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
app_id
string
required
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.thinkeo.io/v0/apps/'
Responses
🟢200OK
application/json
Body
id
string <uuid>
required
name
string
required
description
string
required
blockId
string <uuid>
required
aiConfig
optional
Any of
model
string | null
optional
Default:
null
systemPrompt
string | null
optional
Default:
null
topP
number <float> | null
optional
Default:
null
temperature
number <float> | null
optional
Default:
null
presencePenalty
number <float> | null
optional
Default:
null
frequencyPenalty
number <float> | null
optional
Default:
null
maxTokensOutput
integer <uint32> | null
optional
>= 1
Default:
null
teamReadable
boolean
required
createdAt
string <date-time>
required
updatedAt
string <date-time>
required
archived
string <date-time> | null
optional
Example
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"name": "string",
"description": "string",
"blockId": "fcde1d7c-c9cf-4365-8b6f-51bb6a8bc460",
"aiConfig": {
"model": null,
"systemPrompt": null,
"topP": null,
"temperature": null,
"presencePenalty": null,
"frequencyPenalty": null,
"maxTokensOutput": null
},
"teamReadable": true,
"createdAt": "2019-08-24T14:15:22Z",
"updatedAt": "2019-08-24T14:15:22Z",
"archived": "2019-08-24T14:15:22Z"
}
🟠400Bad Request
🟠413413
🟠415415
Modified at 2025-02-21 14:53:31