API를 활용해서 gpts를 만드려고 api를 발급받았지만 API키가 작동하지 않는다...
문의를 남겼지만 아직 답변이 오지 않았다.
schema는 아래와 같이 작성하였다.
{
"openapi": "3.1.0",
"info": {
"title": "Stock Information API",
"description": "API for retrieving stock information based on stock name.",
"version": "1.0.0"
},
"servers": [
{
"url": "https://api.seibro.or.kr/openapi/service/StockSvc"
}
],
"paths": {
"/getStkIsinByNmN1": {
"get": {
"summary": "Get Stock Information by Name",
"description": "Retrieve stock information using the stock name.",
"operationId": "getStockByName",
"parameters": [
{
"name": "ServiceKey",
"in": "query",
"required": true,
"description": "Authentication key (URL-Encode)",
"schema": {
"type": "string",
"example": "_____ 가지고 있는 API key
"
}
},
{
"name": "numOfRows",
"in": "query",
"required": true,
"description": "Number of rows per page",
"schema": {
"type": "integer",
"example": 2
}
},
{
"name": "pageNo",
"in": "query",
"required": true,
"description": "Page number",
"schema": {
"type": "integer",
"example": 1
}
}
]
}
}
}
}
'인공지능 > gpt 활용' 카테고리의 다른 글
주식 추천 gpts (0) | 2023.11.21 |
---|---|
주가 API 사용 (5) | 2023.11.20 |
gpt 4를 통해 gpts만들기 (0) | 2023.11.14 |
나만의 gpt 만들기 (0) | 2023.11.14 |
gpt 유료 사용법 (0) | 2023.11.14 |