파라미터 정보
URL
api.hashscraper.com/api/get_param_info
요청방식
POST
Port
80
Status
ACTIVE
Header
Key | Required | Value |
---|---|---|
Content-Type |
필수 | application/json; version=2 |
Parameter
Key | Required | Description |
---|---|---|
api_key |
필수 | 해시스크래퍼 API 키 (API키는 오른쪽 위 프로필을 누르신후 내 정보에 가시면 얻을수 있습니다.) |
schedule_id |
필수 | Schedule Id |
샘플코드
- cURL
- Ruby
- Python
- NodeJS
- PHP
- Java
curl -X POST \
--header "Content-Type: application/json; version=2" \
--data '{
"api_key": "YOUR_API_KEY",
"schedule_id": "YOUR_SCHEDULE_ID"
}' \
'api.hashscraper.com/api/get_param_info'
begin
api_key = 'YOUR_API_KEY'
host = 'api.hashscraper.com'
port = '80'
path = "/api/get_param_info"
request = Net::HTTP::Post.new(path)
schedule_id = 'YOUR_SCHEDULE_ID'
request['Content-Type'] = 'application/json; version=2'
request.body = {
api_key: api_key,
schedule_id: schedule_id
}.to_json
response = Net::HTTP.start(host, port) do |http|
http.request(request)
end
puts response.body
rescue => e
puts e
end