Earlier quoted context omitted.
> I'm not sure how I could further improve the current flow Remove 1 and 2.
So I actually do have a version of my API that doesn't require any sign up at all for the users that prefer this! You can see it here: https://www.exchangerate-api.com/docs/free That said, as much as some users want an open endpoint with zero authentication there are many others who want an actual account, commercial support, high availability, more features etc. These users are also the ones that pay for development…
What’s your API’s “Time To 200”?
81–90 of 90 posts
Re: What’s your API’s “Time To 200”?
#82Zero for us at http://api.case.law because most of our endpoints don't require registration. Getting case text does require fast free registration, though.
Thanks for the link - this is super cool! I definitely plan to explore.
Re: What’s your API’s “Time To 200”?
#83We generalised it over time to “time to value” for anything that isn’t onboarding/data-fetching
Re: What’s your API’s “Time To 200”?
#84Is there anyone that does API management as a service? Something that would consolidate account, tokens, billing, tracking, firewalling etc of an API? Somewhere where one could plug their api and monetize it easily?
RapidAPI. You can consume multiple API's from one account and as a developer it's a good way to monetize an API if there isn't too much competition in your niche. Not sure what you mean by firewalling but RapidAPI does authenticate their requests to your endpoint so as a developer you can do access control in this way.
Re: What’s your API’s “Time To 200”?
#85Re: What’s your API’s “Time To 200”?
#86Earlier quoted context omitted.
famous example of this, are most of the aws api's that because of their signing features and hashes can really only be called sanely from an sdk. such a pain to debug, i'm not sure why they have such signing features. is it for security
> is it for security Yes. EDIT: specifically, it is do intercepting a request doesn’t allow you to issue new requests.
Re: What’s your API’s “Time To 200”?
#87Earlier quoted context omitted.
Looking at you literally all of AWS .
To be fair, it’s not like the GCP APIs are much easier to use. It’s probably the right thing for infra and payment services to have a higher bar for API security, plus they’re hugely complex and usually used as an SDK. That said, I haven’t been very impressed with the Google API dev experience. Example: I was just trying to post some timing data to Google Analytics via Go, and the documented example didn’t work in ad…
Re: What’s your API’s “Time To 200”?
#88I've put a fair amount of work into getting this exact time as low as possible for my exchange rates API [1]. I've noticed slightly better conversion each time I've taken a major step out of the process. I've specifically eliminated some of the steps this article cites in its example of a tedious flow - for instance I changed user accounts to be confirmed by default and then only disable them retroactively if a user…
Re: What’s your API’s “Time To 200”?
#89Earlier quoted context omitted.
> is it for security Yes. EDIT: specifically, it is do intercepting a request doesn’t allow you to issue new requests.
Isn't that what https provides. Or were the APIs creates before https was popular
For example, S3. S3’s authentication scheme allow you create a limited used download link and passing to a untrusted user