munger-engine / docs /munger-api.postman_collection.json
dromerosm's picture
Refactor project structure: Move docs to /docs, update README
4811dd1
{
"info": {
"_postman_id": "munger-engine-v1",
"name": "Munger Engine API",
"description": "API collection for the Munger Stock Analysis Engine.",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"item": [
{
"name": "Health Check",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{baseUrl}}/api/v1/health",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v1",
"health"
]
}
},
"response": []
},
{
"name": "Trigger Sync",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"force\": true\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/api/v1/sync",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v1",
"sync"
]
}
},
"response": []
},
{
"name": "Get Signals",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{baseUrl}}/api/v1/signals",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v1",
"signals"
]
}
},
"response": []
},
{
"name": "Get Ticker Details",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{baseUrl}}/api/v1/ticker/AAPL",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v1",
"ticker",
"AAPL"
]
}
},
"response": []
},
{
"name": "Get Portfolio (Paper)",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{baseUrl}}/api/v1/portfolio",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v1",
"portfolio"
]
}
},
"response": []
}
],
"auth": {
"type": "apikey",
"apikey": [
{
"key": "value",
"value": "{{apiKey}}",
"type": "string"
},
{
"key": "key",
"value": "x-api-key",
"type": "string"
}
]
},
"event": [
{
"listen": "prerequest",
"script": {
"type": "text/javascript",
"exec": [
""
]
}
},
{
"listen": "test",
"script": {
"type": "text/javascript",
"exec": [
""
]
}
}
],
"variable": [
{
"key": "baseUrl",
"value": "https://dromerosm-munger-engine.hf.space",
"type": "string"
},
{
"key": "apiKey",
"value": "YOUR_API_KEY",
"type": "string"
}
]
}