· 6 years ago · Oct 25, 2019, 01:06 PM
1Youtube's Subscription List API:
2 Required parameter: the part parameter will include a comma seperated list of one of more subscription resource properties that the API response code will include
3 Part names can include contentDetails, id, snippet, and subscriberSnippet
4 Data type is string
5 Optional parameters: forChannelId (data type = string) and maxResult (data type = unsigned interger, acceptable values are 0-50, and default value is 5)
6
7
8Google's Geocode API
9 For some reason my API key isn't authoirzied
10
11
12MeetUp's API
13 Does the API require authentication?
14 Most requests must be authenticated, unless otherwise specified
15 Does this API support CORS?
16 Yes
17 Find the events search endpoint documentation. Describe in detail the response format of the events search endpoint.
18 The responses can come in JSON or JSONP
19 JSON is the better bet though becuase the relevant metadata is encoded has HRRP headers with the response.
20 What are the limitations placed on the number of requests that can be made?
21 There is a certain amount of requests that can be made per hour, and once it's reched the data gets throttled yielding less than acccurate results
22 List the errors that you can expect when making calls to this API.
23 400: bad request (this is kind ofa catch all, can be missing a parameter, exceed limits, or request an unsupported format)
24 401: unauthorized
25 429: too many requests
26 500: internal service error