Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

APIs Build an Alexa Skill Building an Alexa Skill Creating Slots and Sample Utterances

Question

I'm right now thinking to make a skill that helps me and reminds me to close the lights or the air conditioner. But do i need to learn specialized language so i make the skill or i can make the skill by the API'S?.

1 Answer

Steven Parker
Steven Parker
229,732 Points

There are two different code parts involved in creating a new skill, the interaction model and the skill service. I believe what you are referring to when you say "by the API'S" is actually the interaction model, which primarily just defines how to interpret the utterances that will be used to make requests.

The "business" part would be the skill service, which would be implemented with a programming language.

But reminders are a standard Alexa skill, you don't need a custom one to do that.

Thank You, Steven Parker.