Advertisement
Advertisement

More Related Content

Slideshows for you(20)

Advertisement

Api in Simple Terms

  1. API in Simple Terms Amir Mohtasebi (@amirmohtasebi)
  2. Product
  3. Platform CameraAPI LocationAPIProximityAPI BiometricAPI NFC API
  4. What is API? - Application Programmable Interface - It’s a contract between applications allowing them to talk to each other - This contract is like English language. Everyone knows it. - API input/output is machine readable - The API we are talking about is mainly Web API, that is over the internet (rather than a device like iPhone)
  5. ANY Weather APP MetService API GET /Weather/Wellington (Give me current Wellington Weather) { Min: 8, Max: 10, Description: “Partly Cloudy” } TMJ API Example: https://api.trademe.co.nz/v1/Categories/5000.xml
  6. Traditional Way of Building Applications Image Credit: CA APIAcademy
  7. New Way: Decouple Data from UI Image Credit: CA APIAcademy
  8. Integration Opportunities are Everywhere Image Credit: CA APIAcademy
  9. Benefits: Allows us to create new: - Applications (Mobile Apps, etc.) - Revenue Streams - Businesses
  10. Access Models - Public - To support someone else’s product - Goal: Growth and Adoption (e.g. Twitter and all the third-party clients it has) - Governance: Control over API - Private - To support our own product - Goal: Reduces the cost of integration (Internal Payment Gateway) - Governance: Control over Product - Partner - Built to support known products - Can be consumed by known entities (Integration with known third-parties) - Goal: Increase growth/reduce cost/use their resources and competitive advantage - Governance: Control over API and relationship
  11. Summary - It is bringing $$ home - API is an interface/contract between machines so it is as good as it’s documentation - It helps us to provide value to the community and instead foster innovation, adoption, engagement - API governance is important to protect our IP - Open platform beats closed products every single time

Editor's Notes

  1. This presentation is intended to iluustrate the business value of API for business people.
  2. This is a product Product is a black box. We don’t know what is happening in there. It just works until it doesn’t and that is the story for another night. The scope of what a product can do is very well defined and normally decided based on mindset of one or more people inside the company.
  3. Awesome product. Product lifetime about 100 years Change in functionality: 0. Impossible.
  4. This is a platform Has a layer of abstraction around it. It means we don’t care how it works. But we want to have some of those functionality in our application without implement/reverse engineer them by ourselves.
  5. The existence of APIs helps us in transformation of a product to platform and create an ecosystem around it. The product evolves by every new app. The scope and potential of platform is only limited by how easy it is to use it’s API
  6. Tightly Coupled Not usable by third parties.
  7. The UI is separate. The data is standard and machine readable. So our FrontEnd app can parse it and populate fields.
  8. Since UI is separate and they all understand the shared language (data type) all other applications can integrate and use the functionality without knowing how that data is actually gathered. Probably with lots of sensors and complicated calculations.
  9. Public: Twitter’s UI was not up to standards until recently, however, there were thousands of apps available by public. Some were so good that twitter had to buy them (TweetDeck) Private: A starting point for breaking down the application structure into microservices and decouple them. Partner: 90% of Netflix consumtion is through their partner API. A majority of Salesforce revenue is through their API.
  10. The impact on Exponential Organisation MTP factors: Great impact on Community & Crown (Public API) Great impact on Engagement (Partner API) Enabler of Dashboards, Interfaces A gateway to share the potential of Algorthms.
Advertisement