Add 10 informations
parent
043959c57d
commit
9ee885c92a
|
@ -148,7 +148,6 @@ Detailed information about API
|
||||||
## To Dos
|
## To Dos
|
||||||
- [x] Fixing structure of the repository
|
- [x] Fixing structure of the repository
|
||||||
- [ ] Add nuclei-template link to each information
|
- [ ] Add nuclei-template link to each information
|
||||||
- [ ] Create a bash script to check the validity of API key / Oauth token
|
|
||||||
- [ ] Get all of the information from github.com/public-apis/public-apis
|
- [ ] Get all of the information from github.com/public-apis/public-apis
|
||||||
|
|
||||||
## References
|
## References
|
||||||
|
|
|
@ -6,13 +6,13 @@ Get live and historical data from 60+ fiat and crypto currencies via a modern RE
|
||||||
## __Example Request__
|
## __Example Request__
|
||||||
* Curl
|
* Curl
|
||||||
```
|
```
|
||||||
curl "https://currency.abstractapi.com/v1/?api_key={{token}}&base=USD"
|
curl "https://exchange-rates.abstractapi.com/v1/live/?api_key={{token}}&base=USD"
|
||||||
```
|
```
|
||||||
|
|
||||||
* Raw
|
* Raw
|
||||||
```
|
```
|
||||||
GET /v1/?api_key={{token}}&base=USD HTTP/1.1
|
GET /v1/live/?api_key={{token}}&base=USD HTTP/1.1
|
||||||
Host: currency.abstractapi.com
|
Host: exchange-rates.abstractapi.com
|
||||||
```
|
```
|
||||||
|
|
||||||
## __Response__
|
## __Response__
|
||||||
|
|
|
@ -6,13 +6,13 @@ Quickly and easily get the time and date of a location or IP address, or convert
|
||||||
## __Example Request__
|
## __Example Request__
|
||||||
* Curl
|
* Curl
|
||||||
```
|
```
|
||||||
curl "https://time.abstractapi.com/v1/?api_key={{token}}&location=Oxford, United Kingdom"
|
curl "https://timezone.abstractapi.com/v1/current_time/?api_key={{token}}&location=Oxford, United Kingdom"
|
||||||
```
|
```
|
||||||
|
|
||||||
* Raw
|
* Raw
|
||||||
```
|
```
|
||||||
GET /v1/?api_key={{token}}&location=Oxford,%20United%20Kingdom HTTP/1.1
|
GET /v1/current_time/?api_key={{token}}&location=Oxford,%20United%20Kingdom HTTP/1.1
|
||||||
Host: time.abstractapi.com
|
Host: timezone.abstractapi.com
|
||||||
```
|
```
|
||||||
|
|
||||||
## __Response__
|
## __Response__
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# [Airtable](https://airtable.com/api)
|
# [Airtable](https://airtable.com/api)
|
||||||
|
|
||||||
## __Description__
|
## __Description__
|
||||||
Integrate with Airtable
|
Integrate with Airtable
|
||||||
|
|
||||||
## __Example Request__
|
## __Example Request__
|
||||||
* Curl
|
* Curl
|
||||||
|
|
|
@ -0,0 +1,50 @@
|
||||||
|
# [Aletheia](https://aletheiaapi.com/docs/)
|
||||||
|
|
||||||
|
## __Description__
|
||||||
|
Insider trading data, earnings call analysis, financial statements, and more
|
||||||
|
|
||||||
|
## __Example Request__
|
||||||
|
* Curl
|
||||||
|
```
|
||||||
|
curl "http://api.aletheiaapi.com/LatestTransactions?issuer=TSLA&owner=1494730" -H "Key: {{token}}"
|
||||||
|
```
|
||||||
|
|
||||||
|
* Raw
|
||||||
|
```
|
||||||
|
GET /LatestTransactions?issuer=TSLA&owner=1494730 HTTP/1.1
|
||||||
|
Host: api.aletheiaapi.com
|
||||||
|
Key: {{token}}
|
||||||
|
```
|
||||||
|
|
||||||
|
## __Response__
|
||||||
|
* Success
|
||||||
|
```
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"Id":"abcd1234-abcd-1234-abcd-abcd1234abcd",
|
||||||
|
"FromFiling":"abcd1234-abcd-1234-abcd-abcd1234abcd",
|
||||||
|
"EntryType":0,
|
||||||
|
"QuantityOwnedFollowingTransaction":166587740.0,
|
||||||
|
"Direcn Stock",
|
||||||
|
"SecurityType":0,
|
||||||
|
"AcquiredDisposed":1,
|
||||||
|
"Quantity":28526.0,
|
||||||
|
"PricePerSecurity":null,
|
||||||
|
"TransactionDate":"2022-04-28T00:00:00",
|
||||||
|
...
|
||||||
|
}
|
||||||
|
]
|
||||||
|
```
|
||||||
|
* Error
|
||||||
|
```
|
||||||
|
API key invalid
|
||||||
|
```
|
||||||
|
## __Regex__
|
||||||
|
```
|
||||||
|
[A-Z0-9]{32}
|
||||||
|
```
|
||||||
|
|
||||||
|
## __Example API key__
|
||||||
|
```
|
||||||
|
LGIWODLS8P9IHLTAC5WL1JDKWIE1ABCD
|
||||||
|
```
|
|
@ -0,0 +1,60 @@
|
||||||
|
# [BreezoMeter](https://docs.breezometer.com/)
|
||||||
|
|
||||||
|
## __Description__
|
||||||
|
Location-based Air Pollution, Pollen & Active Fires information enables businesses to develop solutions that help reduce exposure to environmental hazards.
|
||||||
|
|
||||||
|
## __Example Request__
|
||||||
|
* Curl
|
||||||
|
```
|
||||||
|
curl "https://api.breezometer.com/air-quality/v2/current-conditions?lat=48.857456&lon=2.354611&key={{token}}"
|
||||||
|
```
|
||||||
|
|
||||||
|
* Raw
|
||||||
|
```
|
||||||
|
GET /air-quality/v2/current-conditions?lat=48.857456&lon=2.354611&key={{token}} HTTP/1.1
|
||||||
|
Host: api.breezometer.com
|
||||||
|
```
|
||||||
|
|
||||||
|
## __Response__
|
||||||
|
* Success
|
||||||
|
```
|
||||||
|
{
|
||||||
|
"metadata": null,
|
||||||
|
"data":{
|
||||||
|
"datetime": "2022-08-17T11:00:00Z",
|
||||||
|
"data_available": true,
|
||||||
|
"indexes":{
|
||||||
|
"baqi": {
|
||||||
|
"display_name": "BreezoMeter AQI",
|
||||||
|
"aqi": 65,
|
||||||
|
"aqi_display": "65",
|
||||||
|
"color": "#A2DB26",
|
||||||
|
"category": "Good air quality",
|
||||||
|
"dominant_pollutant": "o3"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"error": null
|
||||||
|
}
|
||||||
|
```
|
||||||
|
* Error
|
||||||
|
```
|
||||||
|
{
|
||||||
|
"metadata":null,
|
||||||
|
"data":null,
|
||||||
|
"error":{
|
||||||
|
"code":"invalid_api_key",
|
||||||
|
"title":"Invalid API key",
|
||||||
|
"detail":"Provided API key is invalid. Check for accidental whitespace characters and note that the key is case sensitive"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
## __Regex__
|
||||||
|
```
|
||||||
|
[a-z0-9]{32}
|
||||||
|
```
|
||||||
|
|
||||||
|
## __Example API key__
|
||||||
|
```
|
||||||
|
of3ab02f3xd12ldofxc3fosc129sd241
|
||||||
|
```
|
|
@ -0,0 +1,38 @@
|
||||||
|
# [Carbon Interface](https://docs.carboninterface.com/#/)
|
||||||
|
|
||||||
|
## __Description__
|
||||||
|
API to calculate carbon (C02) emissions estimates for common C02 emitting activities
|
||||||
|
|
||||||
|
## __Example Request__
|
||||||
|
* Curl
|
||||||
|
```
|
||||||
|
curl "https://www.carboninterface.com/api/v1/auth" -H "Authorization: Bearer {{token}}"
|
||||||
|
```
|
||||||
|
|
||||||
|
* Raw
|
||||||
|
```
|
||||||
|
GET /api/v1/auth HTTP/1.1
|
||||||
|
Host: www.carboninterface.com
|
||||||
|
Authorization: Bearer {{token}}
|
||||||
|
```
|
||||||
|
|
||||||
|
## __Response__
|
||||||
|
* Success
|
||||||
|
```
|
||||||
|
{
|
||||||
|
"message":"auth successful"
|
||||||
|
}
|
||||||
|
```
|
||||||
|
* Error
|
||||||
|
```
|
||||||
|
HTTP Token: Access denied.
|
||||||
|
```
|
||||||
|
## __Regex__
|
||||||
|
```
|
||||||
|
[a-zA-Z0-9]{21}
|
||||||
|
```
|
||||||
|
|
||||||
|
## __Example API key__
|
||||||
|
```
|
||||||
|
oDWwEm2KepcmbsLbCK2ld
|
||||||
|
```
|
|
@ -1,7 +1,7 @@
|
||||||
# [ClickUp](https://clickup.com/api)
|
# [ClickUp](https://clickup.com/api)
|
||||||
|
|
||||||
## __Description__
|
## __Description__
|
||||||
ClickUp is a robust, cloud-based project management tool for boosting productivity
|
ClickUp is a robust, cloud-based project management tool for boosting productivity
|
||||||
|
|
||||||
## __Example Request__
|
## __Example Request__
|
||||||
* Curl
|
* Curl
|
||||||
|
|
|
@ -0,0 +1,50 @@
|
||||||
|
# [Climatiq](https://docs.climatiq.io/)
|
||||||
|
|
||||||
|
## __Description__
|
||||||
|
Calculate the environmental footprint created by a broad range of emission-generating activities
|
||||||
|
|
||||||
|
## __Example Request__
|
||||||
|
* Curl
|
||||||
|
```
|
||||||
|
curl "https://beta3.api.climatiq.io/search?query=light+duty+trucks&year=2021" -H "Authorization: Bearer {{token}}"
|
||||||
|
```
|
||||||
|
|
||||||
|
* Raw
|
||||||
|
```
|
||||||
|
GET /search?query=light+duty+trucks&year=2021 HTTP/1.1
|
||||||
|
Host: beta3.api.climatiq.io
|
||||||
|
Authorization: Bearer {{token}}
|
||||||
|
```
|
||||||
|
|
||||||
|
## __Response__
|
||||||
|
* Success
|
||||||
|
```
|
||||||
|
{
|
||||||
|
"current_page": 1,
|
||||||
|
"last_page": 11,
|
||||||
|
"total_results": 218,
|
||||||
|
"results": [
|
||||||
|
{
|
||||||
|
"activity_id": "commercial_vehicle-vehicle_type_truck_light-fuel_source_na-engine_size_na-vehicle_age_na-vehicle_weight_na",
|
||||||
|
"uuid": "05d034db-dfe7-462e-9a19-a69ecd65a114",
|
||||||
|
"id": "commercial_vehicle-vehicle_type_truck_light-fuel_source_na-engine_size_na-vehicle_age_na-vehicle_weight_na",
|
||||||
|
"name": "Light-Duty Truck",
|
||||||
|
"category": "Vehicles",
|
||||||
|
...
|
||||||
|
```
|
||||||
|
* Error
|
||||||
|
```
|
||||||
|
{
|
||||||
|
"error": "unauthorized",
|
||||||
|
"message": "Your authentication token was not valid"
|
||||||
|
}
|
||||||
|
```
|
||||||
|
## __Regex__
|
||||||
|
```
|
||||||
|
[A-Z0-9]{28}
|
||||||
|
```
|
||||||
|
|
||||||
|
## __Example API key__
|
||||||
|
```
|
||||||
|
V9NPRSZ3KF4XN4Q8G50J3Y1DXRVQ
|
||||||
|
```
|
|
@ -0,0 +1,43 @@
|
||||||
|
# [Cloudmersive](https://api.cloudmersive.com/)
|
||||||
|
|
||||||
|
## __Description__
|
||||||
|
A Utility API platform provides layers of API coverage, allowing businesses to accelerate both project and deliverable completion times, as well as increase information security and standardize organizational output across working groups and teams.
|
||||||
|
|
||||||
|
## __Example Request__
|
||||||
|
* Curl
|
||||||
|
```
|
||||||
|
curl --location --request POST "https://api.cloudmersive.com/barcode/lookup/ean" --header "Content-Type: application/x-www-form-urlencoded" --header "Apikey: {{token}}" -d "0=<&1=s&2=t&3=r&4=i&5=n&6=g&7=>"
|
||||||
|
```
|
||||||
|
|
||||||
|
* Raw
|
||||||
|
```
|
||||||
|
POST /barcode/lookup/ean HTTP/1.1
|
||||||
|
Host: api.cloudmersive.com
|
||||||
|
Content-Type: application/x-www-form-urlencoded
|
||||||
|
Apikey: {{token}}
|
||||||
|
Content-Length: 31
|
||||||
|
|
||||||
|
0=<&1=s&2=t&3=r&4=i&5=n&6=g&7=>
|
||||||
|
```
|
||||||
|
|
||||||
|
## __Response__
|
||||||
|
* Success
|
||||||
|
```
|
||||||
|
{
|
||||||
|
"Successful":true,
|
||||||
|
"Matches":[]
|
||||||
|
}
|
||||||
|
```
|
||||||
|
* Error
|
||||||
|
```
|
||||||
|
401 Invalid API key or exceeded limits.
|
||||||
|
```
|
||||||
|
## __Regex__
|
||||||
|
```
|
||||||
|
[a-z0-9]{8}-[a-z0-9]{4}-[a-z0-9]{4}-[a-z0-9]{4}-[a-z0-9]{12}
|
||||||
|
```
|
||||||
|
|
||||||
|
## __Example API key__
|
||||||
|
```
|
||||||
|
abcd1234-abcd-1234-abcd-abcd1234abcd
|
||||||
|
```
|
|
@ -0,0 +1,52 @@
|
||||||
|
# [Fixer](https://fixer.io/documentation)
|
||||||
|
|
||||||
|
## __Description__
|
||||||
|
Exchange rates and currency conversion
|
||||||
|
|
||||||
|
## __Example Request__
|
||||||
|
* Curl
|
||||||
|
```
|
||||||
|
curl "https://data.fixer.io/api/symbols?access_key={{token}}"
|
||||||
|
```
|
||||||
|
|
||||||
|
* Raw
|
||||||
|
```
|
||||||
|
GET /api/latest?access_key={{token}} HTTP/1.1
|
||||||
|
Host: data.fixer.io
|
||||||
|
...
|
||||||
|
```
|
||||||
|
|
||||||
|
## __Response__
|
||||||
|
* Success
|
||||||
|
```
|
||||||
|
{
|
||||||
|
"success": true,
|
||||||
|
"symbols": {
|
||||||
|
"AED": "United Arab Emirates Dirham",
|
||||||
|
"AFN": "Afghan Afghani",
|
||||||
|
"ALL": "Albanian Lek",
|
||||||
|
"AMD": "Armenian Dram",
|
||||||
|
[...]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
* Error
|
||||||
|
```
|
||||||
|
{
|
||||||
|
"success": false,
|
||||||
|
"error": {
|
||||||
|
"code": 101,
|
||||||
|
"type": "invalid_access_key",
|
||||||
|
"info": "You have not supplied a valid API Access Key. [Technical Support: support@apilayer.com]"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
## __Regex__
|
||||||
|
```
|
||||||
|
[a-z0-9]{32}
|
||||||
|
```
|
||||||
|
|
||||||
|
## __Example API key__
|
||||||
|
```
|
||||||
|
tue3sv9hzsey1me4l7fwq3t46u5k8wag
|
||||||
|
```
|
|
@ -0,0 +1,50 @@
|
||||||
|
# [IQAir](https://www.iqair.com/air-pollution-data-api)
|
||||||
|
|
||||||
|
## __Description__
|
||||||
|
Air quality and weather data
|
||||||
|
|
||||||
|
## __Example Request__
|
||||||
|
* Curl
|
||||||
|
```
|
||||||
|
curl "http://api.airvisual.com/v2/countries?key={{token}}"
|
||||||
|
```
|
||||||
|
|
||||||
|
* Raw
|
||||||
|
```
|
||||||
|
GET /v2/countries?key={{token}} HTTP/1.1
|
||||||
|
Host: api.airvisual.com
|
||||||
|
```
|
||||||
|
|
||||||
|
## __Response__
|
||||||
|
* Success
|
||||||
|
```
|
||||||
|
{
|
||||||
|
"status":"success",
|
||||||
|
"data":[
|
||||||
|
{"country":"Afghanistan"},
|
||||||
|
{"country":"Albania"},
|
||||||
|
{"country":"Algeria"},
|
||||||
|
{"country":"Andorra"},
|
||||||
|
{"country":"Angola"}
|
||||||
|
...
|
||||||
|
]
|
||||||
|
}
|
||||||
|
```
|
||||||
|
* Error
|
||||||
|
```
|
||||||
|
{
|
||||||
|
"status":"fail",
|
||||||
|
"data":{
|
||||||
|
"message":"Forbidden"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
## __Regex__
|
||||||
|
```
|
||||||
|
[a-z0-9]{8}-[a-z0-9]{4}-[a-z0-9]{4}-[a-z0-9]{4}-[a-z0-9]{12}
|
||||||
|
```
|
||||||
|
|
||||||
|
## __Example API key__
|
||||||
|
```
|
||||||
|
abcd1234-abcd-1234-abcd-abcd1234abcd
|
||||||
|
```
|
|
@ -0,0 +1,68 @@
|
||||||
|
# [Marketstack](https://marketstack.com/documentation)
|
||||||
|
|
||||||
|
## __Description__
|
||||||
|
Real-Time, Intraday & Historical Market Data API
|
||||||
|
|
||||||
|
## __Example Request__
|
||||||
|
* Curl
|
||||||
|
```
|
||||||
|
curl "https://api.marketstack.com/v1/eod?access_key={{token}}&symbols=AAPL"
|
||||||
|
```
|
||||||
|
|
||||||
|
* Raw
|
||||||
|
```
|
||||||
|
GET /v1/eod?access_key={{token}}&symbols=AAPL HTTP/1.1
|
||||||
|
Host: api.marketstack.com
|
||||||
|
...
|
||||||
|
```
|
||||||
|
|
||||||
|
## __Response__
|
||||||
|
* Success
|
||||||
|
```
|
||||||
|
{
|
||||||
|
"pagination": {
|
||||||
|
"limit": 100,
|
||||||
|
"offset": 0,
|
||||||
|
"count": 100,
|
||||||
|
"total": 9944
|
||||||
|
},
|
||||||
|
"data": [
|
||||||
|
{
|
||||||
|
"open": 129.8,
|
||||||
|
"high": 133.04,
|
||||||
|
"low": 129.47,
|
||||||
|
"close": 132.995,
|
||||||
|
"volume": 106686703.0,
|
||||||
|
"adj_high": 133.04,
|
||||||
|
"adj_low": 129.47,
|
||||||
|
"adj_close": 132.995,
|
||||||
|
"adj_open": 129.8,
|
||||||
|
"adj_volume": 106686703.0,
|
||||||
|
"split_factor": 1.0,
|
||||||
|
"dividend": 0.0,
|
||||||
|
"symbol": "AAPL",
|
||||||
|
"exchange": "XNAS",
|
||||||
|
"date": "2021-04-09T00:00:00+0000"
|
||||||
|
},
|
||||||
|
[...]
|
||||||
|
]
|
||||||
|
}
|
||||||
|
```
|
||||||
|
* Error
|
||||||
|
```
|
||||||
|
{
|
||||||
|
"error": {
|
||||||
|
"code": "invalid_access_key",
|
||||||
|
"message": "You have not supplied a valid API Access Key."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
## __Regex__
|
||||||
|
```
|
||||||
|
[a-z0-9]{32}
|
||||||
|
```
|
||||||
|
|
||||||
|
## __Example API key__
|
||||||
|
```
|
||||||
|
tue3sv9hzsey1me4l7fwq3t46u5k8wag
|
||||||
|
```
|
|
@ -1,7 +1,7 @@
|
||||||
# [ScrapingAnt](https://docs.scrapingant.com/)
|
# [ScrapingAnt](https://docs.scrapingant.com/)
|
||||||
|
|
||||||
## __Description__
|
## __Description__
|
||||||
Headless Chrome scraping with a simple API
|
Headless Chrome scraping with a simple API
|
||||||
|
|
||||||
## __Example Request__
|
## __Example Request__
|
||||||
* Curl
|
* Curl
|
||||||
|
|
|
@ -0,0 +1,64 @@
|
||||||
|
# [SeatGeek](https://platform.seatgeek.com/)
|
||||||
|
|
||||||
|
## __Description__
|
||||||
|
Search events, venues and performers
|
||||||
|
|
||||||
|
## __Example Request__
|
||||||
|
* Curl
|
||||||
|
```
|
||||||
|
curl "https://api.seatgeek.com/2/events?client_id={{token}}"
|
||||||
|
```
|
||||||
|
|
||||||
|
* Raw
|
||||||
|
```
|
||||||
|
GET /2/events?client_id={{token}} HTTP/1.1
|
||||||
|
Host: api.seatgeek.com
|
||||||
|
```
|
||||||
|
|
||||||
|
## __Response__
|
||||||
|
* Success
|
||||||
|
```
|
||||||
|
{
|
||||||
|
"events":[
|
||||||
|
{
|
||||||
|
"type":"minor_league_baseball",
|
||||||
|
"id":5576169,
|
||||||
|
"datetime_utc":"2022-08-17T08:30:00",
|
||||||
|
"venue":{
|
||||||
|
"state":"KY",
|
||||||
|
"name_v2":"Bowling Green Ballpark",
|
||||||
|
"postal_code":"42101",
|
||||||
|
"name":"Bowling Green Ballpark",
|
||||||
|
"links":[],
|
||||||
|
"timezone":"America\/Chicago",
|
||||||
|
...
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
```
|
||||||
|
* Error
|
||||||
|
```
|
||||||
|
{
|
||||||
|
"status":403,
|
||||||
|
"message":"Invalid client credentials",
|
||||||
|
"errors":[
|
||||||
|
{
|
||||||
|
"message":"Invalid client credentials",
|
||||||
|
"code":40302
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"meta":{
|
||||||
|
"status":403
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
## __Regex__
|
||||||
|
```
|
||||||
|
MjM[a-zA-Z0-9]{33}
|
||||||
|
```
|
||||||
|
|
||||||
|
## __Example API key__
|
||||||
|
```
|
||||||
|
MjM4MDc2NjV8MTU3MDQ4otQ1MC45MQfk12MK
|
||||||
|
```
|
|
@ -0,0 +1,61 @@
|
||||||
|
# [Ticketmaster](http://developer.ticketmaster.com/products-and-docs/apis/getting-started/)
|
||||||
|
|
||||||
|
## __Description__
|
||||||
|
Search events, attractions, or venues
|
||||||
|
|
||||||
|
## __Example Request__
|
||||||
|
* Curl
|
||||||
|
```
|
||||||
|
curl "https://app.ticketmaster.com/discovery/v2/events.json?apikey={{token}}"
|
||||||
|
```
|
||||||
|
|
||||||
|
* Raw
|
||||||
|
```
|
||||||
|
GET /discovery/v2/events.json?apikey={{token}} HTTP/1.1
|
||||||
|
Host: app.ticketmaster.com
|
||||||
|
```
|
||||||
|
|
||||||
|
## __Response__
|
||||||
|
* Success
|
||||||
|
```
|
||||||
|
{
|
||||||
|
"_embedded":{
|
||||||
|
"events":[
|
||||||
|
{
|
||||||
|
"name":"Imagine Dragons: Mercury World Tour",
|
||||||
|
"type":"event",
|
||||||
|
"id":"Z7r9jZ1Ad8S4v",
|
||||||
|
"test":false,
|
||||||
|
"url":"https://www.ticketmaster.com/event/abcd1234avcd",
|
||||||
|
"locale":"en-us",
|
||||||
|
"images":[
|
||||||
|
{
|
||||||
|
"ratio":"16_9",
|
||||||
|
...
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
* Error
|
||||||
|
```
|
||||||
|
{
|
||||||
|
"fault": {
|
||||||
|
"faultstring": "Invalid ApiKey",
|
||||||
|
"detail": {
|
||||||
|
"errorcode": "oauth.v2.InvalidApiKey"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
## __Regex__
|
||||||
|
```
|
||||||
|
[a-zA-Z0-9]{32}
|
||||||
|
```
|
||||||
|
|
||||||
|
## __Example API key__
|
||||||
|
```
|
||||||
|
QSzFlcDwaXtfevSu4Oo98AsJb4fKMGio
|
||||||
|
```
|
Loading…
Reference in New Issue