Jump into concepts and practice - no test required
or
Recommended
Test this pattern10 questions across easy, medium, and hard to know if this pattern is strong
Related Resource Links in REST API
📖 Scenario: You are building a simple REST API that returns information about books. Each book should include links to related resources, such as the author details and reviews.
🎯 Goal: Create a Python dictionary representing a book with related resource links. Then, add a configuration for the base URL. Use dictionary comprehension to build full URLs for related resources. Finally, print the complete book data with related links.
📋 What You'll Learn
Create a dictionary called book with keys id, title, and related_links.
Create a variable called base_url with the value "https://api.example.com".
Use dictionary comprehension to update related_links with full URLs using base_url.
Print the book dictionary.
💡 Why This Matters
🌍 Real World
APIs often provide related resource links so clients can easily find connected information like authors or reviews.
💼 Career
Understanding how to structure and build related resource links is important for backend developers working with REST APIs.
Progress0 / 4 steps
1
Create the initial book dictionary
Create a dictionary called book with these exact keys and values: 'id': 101, 'title': 'Learn REST APIs', and 'related_links' which is another dictionary with keys 'author' and 'reviews' having values '/authors/5' and '/books/101/reviews' respectively.
Rest API
Hint
Remember to create a dictionary named book with the exact keys and values given.
2
Add the base URL configuration
Create a variable called base_url and set it to the string "https://api.example.com".
Rest API
Hint
Use a simple assignment to create base_url with the exact string.
3
Build full URLs for related links
Use dictionary comprehension to update book['related_links'] so that each path is prefixed with base_url. Use {key: base_url + path for key, path in book['related_links'].items()} and assign it back to book['related_links'].
Rest API
Hint
Use dictionary comprehension to combine base_url with each path in related_links.
4
Print the complete book dictionary
Write a print statement to display the book dictionary.
Rest API
Hint
Use print(book) to show the final dictionary with full URLs.
Practice
(1/5)
1. What is the main purpose of related resource links in a REST API?
easy
A. To store user credentials securely
B. To speed up the server response time
C. To connect related data so users can easily navigate between resources
D. To encrypt data sent over the network
Solution
Step 1: Understand the role of related resource links
Related resource links provide connections between different pieces of data in an API, making it easier to find connected information.
Step 2: Identify the correct purpose
Among the options, only connecting related data for easy navigation matches the purpose of related resource links.
Final Answer:
To connect related data so users can easily navigate between resources -> Option C
Quick Check:
Related resource links = connect data [OK]
Hint: Related links help users jump between connected data [OK]
Common Mistakes:
Confusing related links with security features
Thinking related links speed up server
Assuming related links encrypt data
2. Which of the following is the correct way to include a related resource link in a JSON REST API response?
easy
A. "related": "https://api.example.com/users/123/orders"
B. "related": users/123/orders
C. "related":
D. "related": {url: "https://api.example.com/users/123/orders"}
Solution
Step 1: Check JSON syntax for URLs
In JSON, URLs should be strings enclosed in double quotes without angle brackets or unquoted text.
Step 2: Identify the correct format
"related": "https://api.example.com/users/123/orders" correctly uses a string with the full URL in quotes. Options B and C are invalid JSON strings, and D uses an object instead of a string.
Final Answer:
"related": "https://api.example.com/users/123/orders" -> Option A
Quick Check:
Related link URL must be a quoted string [OK]
Hint: URLs in JSON must be quoted strings without brackets [OK]
Common Mistakes:
Leaving URLs unquoted
Using angle brackets around URLs
Using objects instead of strings for links
3. Given this JSON snippet from a REST API response:
D. The URL to fetch the author details of the book
Solution
Step 1: Analyze the related link URL
The URL ends with "/books/10/author", which suggests it points to the author of book with ID 10.
Step 2: Match URL purpose with options
Only The URL to fetch the author details of the book correctly describes this as fetching author details. Other options refer to book update, delete, or list, which do not match the URL.
Final Answer:
The URL to fetch the author details of the book -> Option D
Quick Check:
Related link points to connected resource = author [OK]
Hint: Look at URL path to identify related resource type [OK]
Why might this related link cause problems for clients?
medium
A. The related link points to a wrong resource
B. The URL is missing the protocol (http:// or https://)
C. The JSON format is invalid
D. The related link is too long
Solution
Step 1: Check the related link format
The link "api.example.com/users/5/friends" lacks the protocol prefix like "https://" which is required for clients to resolve the full URL.
Step 2: Identify the impact
Without the protocol, clients may fail to fetch the related resource or assume a wrong protocol, causing errors.
Final Answer:
The URL is missing the protocol (http:// or https://) -> Option B
Quick Check:
Related links need full URLs with protocol [OK]
Hint: Always include http:// or https:// in related links [OK]
Common Mistakes:
Ignoring missing protocol in URLs
Thinking JSON is invalid due to link format
Assuming link length causes issues
5. You want to design a REST API response for a blog post that includes related links to the author and comments. Which JSON structure correctly shows these related resource links?
D. {
"id": 101,
"title": "REST APIs",
"related": null
}
Solution
Step 1: Understand how to represent multiple related links
When multiple related resources exist, it's best to use an object with named keys for clarity, not a list or comma-separated string.
Step 2: Evaluate each option
{
"id": 101,
"title": "REST APIs",
"related": {
"author": "https://api.example.com/users/42",
"comments": "https://api.example.com/posts/101/comments"
}
} uses an object with keys "author" and "comments" pointing to URLs, which is clear and correct. {
"id": 101,
"title": "REST APIs",
"related": [
"https://api.example.com/users/42",
"https://api.example.com/posts/101/comments"
]
} uses a list without labels, making it unclear. {
"id": 101,
"title": "REST APIs",
"related": "https://api.example.com/users/42, https://api.example.com/posts/101/comments"
} uses a string with comma-separated URLs, which is not standard. {
"id": 101,
"title": "REST APIs",
"related": null
} has null, which provides no links.
Final Answer:
Use an object with named related links for clarity -> Option A
Quick Check:
Multiple related links = object with named URLs [OK]
Hint: Use named keys for multiple related links in JSON [OK]