API Flashcards

1
Q

What does API stand for?

A

Application programming interfaces

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are RESTful API?

A

RESTful API are web API. An API allows two systems to communicate. A request is made from one system to another system, which then responds back to the system that made the request.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are request methods?

A

A request method tells the server what the request is trying to do. It’s necessary to make a request. There are different types of request methods like GET. GET tells the server to get a resource.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is Postman?

A

Postman allows us to inspect requests and responses as raw data.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What does JSON stand for?

A

JavaScript Object Notation

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What does JSON do?

A

JSON is a specific format for organizing data. It’s used in a way to communicate data between a client and server.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What does a response always have?

A

They always have a response code which tells the client whether the request was successful.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly