-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapi.http
64 lines (50 loc) · 2.06 KB
/
api.http
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// ###############################################################################
// Environment Variables
// ###############################################################################
@baseUrl = https://naqa-api-36462279645.europe-west1.run.app
@contentType = application/json
// ###############################################################################
// API Endpoints
// ###############################################################################
### Health Check (v1)
GET {{baseUrl}}/api/v1/health
Content-Type: {{contentType}}
### Metrics Dashboard
GET {{baseUrl}}/api/v1/metrics
Content-Type: {{contentType}}
### Root Endpoint
GET {{baseUrl}}/
Content-Type: {{contentType}}
### Get Stocks by Year
GET {{baseUrl}}/api/v1/stocks/year/2015
Content-Type: {{contentType}}
### Search Stocks with Parameters
GET {{baseUrl}}/api/v1/stocks/year/2023/search?sector=الطاقة&sharia_opinion=نقية
Content-Type: {{contentType}}
### Calculate Purification Amount
POST {{baseUrl}}/api/v1/stocks/year/2023/calculate-purification
Content-Type: {{contentType}}
{
"start_date": "2023-01-01",
"end_date": "2023-12-31",
"number_of_stocks": 100,
"stock_code": "1111"
}
// ###############################################################################
// Search Examples
// ###############################################################################
### Search by Name
GET {{baseUrl}}/api/v1/stocks/year/2023/search?name=%D8%A3%D8%B1%D8%A7%D9%85%D9%83%D9%88
Content-Type: {{contentType}}
### Search by Code
GET {{baseUrl}}/api/v1/stocks/year/2023/search?code=2222
Content-Type: {{contentType}}
### Search by Sector
GET {{baseUrl}}/api/v1/stocks/year/2023/search?sector=%D8%A7%D9%84%D8%B7%D8%A7%D9%82%D8%A9
Content-Type: {{contentType}}
### Search by Sharia Opinion
GET {{baseUrl}}/api/v1/stocks/year/2023/search?sharia_opinion=%D9%86%D9%82%D9%8A%D8%A9
Content-Type: {{contentType}}
### Combined Search
GET {{baseUrl}}/api/v1/stocks/year/2023/search?sector=%D8%A7%D9%84%D8%B7%D8%A7%D9%82%D8%A9&sharia_opinion=%D9%86%D9%82%D9%8A%D8%A9
Content-Type: {{contentType}}