Showdan.Net
c# client for the shodan api
ApiStatus.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Runtime.Serialization;
5 using System.Threading.Tasks;
6 
7 namespace Shodan.Net.Models
8 {
12  [DataContract]
13  public class ApiStatus
14  {
15  [DataMember(Name = "query_credits")]
16  public int QueryCredits { get; set; }
17 
18  [DataMember(Name = "scan_credits")]
19  public int ScanCredits { get; set; }
20 
21  [DataMember(Name = "telnet")]
22  public bool Telnet { get; set; }
23 
24  [DataMember(Name = "plan")]
25  public string Plan { get; set; }
26 
27  [DataMember(Name = "https")]
28  public bool Https { get; set; }
29 
30  [DataMember(Name = "unlocked")]
31  public bool Unlocked { get; set; }
32  }
33 }
Returns information about the API plan belonging to the given API key.
Definition: ApiStatus.cs:13