mirror of
https://github.com/projectdiscovery/nuclei-templates.git
synced 2026-02-07 03:03:51 +08:00
* Add 27 workflow templates * fixed Artifactory workflow * Fixed Jetty workflow * Fixed Moodle workflow * Fixed Zabbix workflow * Fixed DedeCMS workflow * Fixed OFBiz workflow * Fixed rConfig workflow * Tag update for R-SeeNet workflow * Add 3 token-spray templates * format fixes Co-authored-by: Sandeep Singh <sandeep@projectdiscovery.io>
28 lines
584 B
YAML
28 lines
584 B
YAML
id: api-coinapi
|
|
|
|
info:
|
|
name: CoinAPI API Test
|
|
author: daffainfo
|
|
severity: info
|
|
reference:
|
|
- https://docs.coinapi.io/
|
|
- https://github.com/daffainfo/all-about-apikey/blob/main/Cryptocurrency/CoinAPI.md
|
|
tags: token-spray,coinapi
|
|
|
|
self-contained: true
|
|
requests:
|
|
- raw:
|
|
- |
|
|
GET https://rest.coinapi.io/v1/exchanges HTTP/1.1
|
|
Host: rest.coinapi.io
|
|
X-CoinAPI-Key: {{token}}
|
|
|
|
matchers:
|
|
- type: word
|
|
part: body
|
|
words:
|
|
- '"exchange_id":'
|
|
- '"website":'
|
|
- '"name":'
|
|
condition: and
|