
World Bank Indicators Assistant on the GPT Store
GPT Description
Welcome Message
GPT Prompt Starters
- List countries with GDP data.
- Show population trend for Japan.
- Compare unemployment rates.
- Get inflation data for Argentina.
GPT Action OpenAPI Spec
{
"openapi": "3.0.0",
"info": {
"title": "World Bank Open Data Access",
"description": "This API combines actions that allow querying the World Bank Open Data for retrieving country-specific data, country listings, and global economic indicators.",
"version": "1.0.0"
},
"servers": [
{
"url": "https://api.worldbank.org/v2"
}
],
"paths": {
"/country": {
"get": {
"summary": "List Countries",
"description": "Gets a list of all countries and associated metadata.",
"operationId": "listCountries",
"parameters": [
{
"name": "per_page",
"in": "query",
"description": "Number of countries to list per page.",
"required": false,
"schema": {
"type": "integer",
"default": 50
}
},
{
"name": "format",
"in": "query",
"description": "The format of the response data, defaults to JSON.",
"required": false,
"schema": {
"type": "string",
"enum": [
"json",
"xml"
]
}
}
],
"responses": {
"200": {
"description": "A list of countries with details.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CountryListResponse"
}
}
}
}
}
}
},
"/country/{country_code}/indicator/{indicator_name}": {
"get": {
"summary": "Get Country Indicator Data",
"description": "Retrieves data for a specific indicator for a given country.",
"operationId": "getCountryIndicatorData",
"parameters": [
{
"name": "country_code",
"in": "path",
"required": true,
"description": "Country code as per ISO 3166-1 alpha-2 codes.",
"schema": {
"type": "string"
}
},
{
"name": "indicator_name",
"in": "path",
"required": true,
"description": "The specific indicator code to retrieve data for.",
"schema": {
"type": "string"
}
},
{
"name": "date",
"in": "query",
"required": false,
"description": "The specific year or range of years to retrieve data for, separated by a colon.",
"schema": {
"type": "string",
"pattern": "^[0-9]{4}:[0-9]{4}$"
}
},
{
"name": "format",
"in": "query",
"description": "The format of the response data, defaults to JSON",
"required": false,
"schema": {
"type": "string",
"enum": [
"json",
"xml"
]
}
}
],
"responses": {
"200": {
"description": "Successful response with the data for the requested indicator and country.",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/IndicatorData"
}
}
},
"application/xml": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/IndicatorData"
}
}
}
}
}
}
}
},
"/indicator": {
"get": {
"summary": "List Global Indicators",
"description": "Gets a list of global economic indicators.",
"operationId": "listGlobalIndicators",
"parameters": [
{
"name": "source",
"in": "query",
"description": "The source database to fetch indicators from, defaults to 2 for World Development Indicators.",
"required": false,
"schema": {
"type": "integer",
"default": 2
}
},
{
"name": "format",
"in": "query",
"description": "The format of the response data, defaults to JSON.",
"required": false,
"schema": {
"type": "string",
"enum": [
"json",
"xml"
]
}
}
],
"responses": {
"200": {
"description": "A list of global economic indicators.",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"indicators": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Indicator"
}
}
}
}
}
}
}
}
}
}
},
"components": {
"schemas": {
"CountryListResponse": {
"type": "object",
"properties": {
"page": {
"type": "integer"
},
"pages": {
"type": "integer"
},
"per_page": {
"type": "integer"
},
"total": {
"type": "integer"
},
"countries": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Country"
}
}
}
},
"Country": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"iso2Code": {
"type": "string"
},
"name": {
"type": "string"
},
"region": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"value": {
"type": "string"
}
}
},
"adminregion": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"value": {
"type": "string"
}
}
},
"incomeLevel": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"value": {
"type": "string"
}
}
},
"lendingType": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"value": {
"type": "string"
}
}
},
"capitalCity": {
"type": "string"
},
"longitude": {
"type": "string"
},
"latitude": {
"type": "string"
}
}
},
"IndicatorData": {
"type": "object",
"properties": {
"indicator": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"value": {
"type": "string"
}
}
},
"country": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"value": {
"type": "string"
}
}
},
"value": {
"type": "string",
"nullable": true
},
"decimal": {
"type": "integer"
},
"date": {
"type": "string"
}
}
},
"Indicator": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"source": {
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"value": {
"type": "string"
}
}
},
"sourceNote": {
"type": "string"
},
"sourceOrganization": {
"type": "string"
}
}
}
}
}
}
World Bank Indicators Assistant GPT FAQs
More custom GPTs by Hustle Playground on the GPT Store
Fan-Fiction Generator
Generates fan-fiction stories based on user's favorite characters and settings.
100K+
Poster Maker
Creates custom posters using DALL-E based on user's requests.
10K+

Authentic Dialogue Generator
Produces realistic dialogue in multiple languages for authors and scriptwriters to enhance character interaction.
10K+
Puzzle Constructor
Creates custom puzzles, from crosswords to logic games, based on desired difficulty and themes.
10K+
AI Exam Prep
Provides students with interactive study aids and practice tests for standardized examinations.
5K+
OpenAPI Schema Builder
Assists with OpenAPI Schemas by providing JSON Schema format examples, debugging tips, and best practices.
1K+
Logo Maker
Generate ideas and mockups for logos based on industry, style preferences, and brand identity.
1K+
Travel Agent
Plans personalized trip itineraries, gives travel advice based on preferences and provides real-time updates.
1K+
Ebook Writer
Assists in writing ebooks with original content.
1K+
Manga Translation Wizard
Facilitates the translation of manga from Japanese to other languages, preserving the original tone and cultural nuances.
1K+
Symbol Decoder
Deciphers symbols, signs, and iconography from diverse cultures and eras.
1K+
Nutritionist's Guide
Develops meal plans, nutritional assessments and food science knowledge for dietitians and nutritionists.
1K+
Future Career Predictor
Analyzes current skills, interests, and market trends to predict and recommend future career paths and necessary qualifications.
900+
Public Speaking Simulator
Simulates various public speaking scenarios for practice and improvement.
700+
Revision Helper
Assists students in revising for exams and understanding complex topics.
700+
Ergonomics Expert
Provides ergonomic assessments of workspaces, offers advice on posture and equipment, and aims to prevent workplace strain injuries.
300+
File Converter
Transforms various file formats into user-specified output formats.
200+

Marathon Prep Coach
Designs training programs for runners preparing for marathons and other races, tailored to fitness levels.
200+
Auto Repair Assistant
Provides guidance on common vehicle maintenance and repair tasks.
100+
Children's Storyteller
Crafts engaging children's stories with valuable lessons and interactive elements.
100+
Comic Book Creator
Assists users in developing their own comic books, from storyline to artwork.
100+

Roleplay Master
I craft and guide immersive RPG adventures.
100+

Stock Market Learner
Educates beginners on stock market basics and investment strategies.
100+
Serial Saga Writer
Creates serial fiction episodes for digital platforms, optimizing for episodic cliffhangers and reader engagement.
100+
Operational Analyst
Advises on business process improvements, efficiency optimization and technology integration for operations managers.
100+

Money Management Mentor
A guide for personal finance management, including budgeting, investing, and savings.
100+

Classic Literature Guide
Promotes the reading and understanding of classic literature with summaries and analyses.
100+
Solar Energy Consultant
Advises on solar energy solutions, analyzes efficiency of solar systems, and helps integrate sustainable practices.
100+
Viral Video Visionary
Suggests concepts for viral videos, including trending topics, creative angles, and collaboration opportunities.
100+
Career Path Finder
Specialized in career guidance, this GPT helps users explore different career options, understand job market trends, and offers resume and interview tips.
90+

Epidemic Simulator GPT
Models potential epidemic scenarios and outcomes to educate and prepare for public health responses.
80+
Gamer's Hardware Guide
Offers advice on building and optimizing PCs for gaming, including components compatibility and performance benchmarks.
80+
Thesis Architect AI
Assists students in structuring and refining their thesis or dissertation with research tips and writing guidance.
80+

Data Visualization Specialist
Transforms complex data into engaging and informative visualizations for easier interpretation and decision-making.
80+

Couples Financial Planner
Aids couples in managing joint finances, budgeting for future goals, and navigating financial challenges together.
70+
Ancient Civilization Explorer
Journeys through ancient civilizations, exploring their history, culture, and contributions to the modern world with detailed virtual tours.
70+
Side Business Builder
Helps users in planning and launching a successful side business.
70+
Plant Finder
Uses GPT Vision to provide information and identifies various plant and flower species based on user descriptions or images.
60+

AI Chess Instructor
Teaches chess strategies and tactics with personalized lesson plans and games.
60+

Pop Culture Professor
Analyzes and discusses the impact and nuances of pop culture phenomena across different mediums.
60+
Community Engagement Director
Fosters vibrant online communities, facilitating meaningful interactions and supporting user-generated content.
60+
Greeting Card Maker
Creates personalized greeting cards using DALL-E.
60+

AI Legal Assistant
Helps lawyers draft documents, research case law, and manage client communications.
60+

Behavioral Insights Researcher
Analyzes behavioral data to understand user interactions and preferences, improving product designs.
60+
Algorithmic Trader
Helps you implement sophisticated AI trading strategies to capitalize on market opportunities instantaneously.
60+

Macro Photography Maestro
Guides users in the art of macro photography, including techniques, gear, and composition.
60+
Childhood Development Tracker
Monitors and provides insights on a child's developmental milestones, with parenting tips tailored to different growth stages.
50+
Nootropics Navigator
Shares science-backed information on cognitive enhancers for those interested in nootropics.
50+
Personal Biographer
Creates a personalized interactive life story, allowing users to document and share their milestones, memories, and legacy.
50+
AI-Powered Homework Helper
Assists students with homework across subjects using AI technology to provide explanations, resources, and learning support.
50+
Hybrid Workplace Navigator
Advises organizations on optimizing hybrid work models, blending remote and in-office strategies.
40+
Hobby Matchmaker
Helps people discover new hobbies based on their interests and available time.
40+
Advertising Performance Evaluator
Assesses advertising campaigns across multiple platforms and suggests improvements based on data.
40+
Creative Design Assistant
Assists graphic designers in ideation, design advice, and technical guidance.
40+

Cognitive Enhancer Guide
Shares techniques and practices for cognitive enhancement, including memory exercises and mental agility.
40+
Indie Game Developer's Companion
Provides indie game developers with narrative ideas, programming tips, and resource management strategies.
30+

Outsource Project Manager
Facilitates efficient outsourcing of tasks and projects for small businesses, from identifying needs to monitoring freelance work.
30+

Cognitive Bias Detector
Analyzes texts to identify potential cognitive biases in decision-making processes, offering insights and strategies to mitigate them.
30+

Recipe Remix Chef
Transforms classic recipes with alternative ingredients based on dietary needs or pantry availability.
30+
Strategic Marketeer
Digital marketing strategy and ad optimization.
30+

Non-Fiction Finder
Aids in discovering non-fiction content based on topics of interest, including books, articles, and documentaries.
30+
Extreme Weather Survival Guide
Offers survival strategies and safety tips for extreme weather scenarios, including hurricanes, tornados, and heatwaves.
30+
API Builder Guru
Assists in building, testing, and selling APIs.
30+

Side Hustle Mentor
An entrepreneurial AI that helps maximize profits in the shortest time possible.
30+
Sports Commentary Companion
Provides stats, historical context, and potential talking points for sports commentators during live events.
30+

Climate Change Modeler
Simulates potential climate change scenarios and their impacts using AI-driven models.
30+
Longevity Lifestyle Guide
Guides individuals in adopting lifestyle choices proven to increase lifespan and improve overall health and longevity.
30+
Culinary Herb Gardener
Advises on growing a variety of culinary herbs and their uses in cooking.
20+
Origami Instruction Companion
Teaches origami with step-by-step visual instructions and provides templates for various skill levels.
20+

E-Commerce Startup Consultant
Advises on e-commerce business strategies, including market analysis, store design, and customer engagement practices.
20+

Tech Gadget Reviewer
Delivers comprehensive reviews of the latest tech gadgets, with performance analysis, comparisons, and user recommendations.
20+

Talent Acquisition Specialist
Designed to streamline recruitment processes by identifying ideal candidate profiles and optimizing job matching.
20+

Volunteer Matchmaker
Connects volunteers with opportunities that match their skills and interests.
20+

Character Designer
Sculpts detailed character backstories and personalities for role-playing games and fictional writing.
20+

Virtual Event Planner
Assists in organizing and planning virtual events, offering tips and best practices.
20+

Cybersecurity Analyst
Utilizes AI to help you identify, assess, and respond to digital threats, strengthening cyber defenses.
20+
Poetry Composer
Generates poems in various styles and formats for educators, writers, and poetry enthusiasts.
20+

Cancer Survivor Companion
Provides support with lifestyle tips, community connection, and motivational content for cancer survivors.
20+
Nostalgia Navigator
Develops retro-themed entertainment content, tapping into the nostalgia of various decades and pop culture milestones.
20+
Remote Work Lifestyle Expert
Optimizes remote working experiences, with advice on communication, work-life balance, and creating productive home environments.
20+
Culinary Explorer
Discover and master global cuisines and cooking techniques.
10+

Magical Potion Mixer
Generates recipes for fictional magical potions, complete with effects and brewing methods.
10+

Elderly Mobility Mentor
Provides seniors with personalized exercise regimes to improve mobility, balance, and strength, incorporating age-appropriate activities and safety tips.
10+
Startup Strategist AI
Provides comprehensive guidance for launching a startup, from idea validation to funding strategies.
10+

Virtual Time Traveler
Creates immersive historical experiences using storytelling and image generation.
10+

Speechwriter's Aid
Helps craft speeches for various occasions, with tone and content customization.
10+

Neuroplasticity Nurturer
Shares techniques for harnessing and enhancing the brain's ability to reorganize and adapt.
10+
Creative Coding Instructor
Teaches coding through creative projects that blend art, music, and technology, appealing to learners of all ages and skill levels.
10+

Mixology Expert
Provides cocktail recipes and tips for crafting the perfect drink.
10+
Stoic Philosophy Practitioner
Introduces Stoic principles and practices for personal development and resilience.
10+

Multiverse Theory Tutor
Teaches concepts of multiverse and parallel universe theories in physics and philosophy with interactive scenarios.
10+

Grammar Guru
Enhances user writing with real-time grammar checks and educational tips.
10+

Home Automation Consultant
Helps integrate smart devices into home environments, ensuring ease of use and energy efficiency.
10+

Tea Connoisseur's Bot
Offers historical context, brewing tips, and tasting notes for a variety of teas from around the world.
10+

Virtual Librarian
Recommends books based on user preferences and helps manage personal library inventories.
10+

Crisis Communication Planner
Aids organizations in crafting effective crisis communication strategies, including scenario planning and stakeholder messaging.
10+

Chief Innovation Officer
Leads the integration of cutting-edge technologies to foster innovation within organizations.
10+

Eco-Conscious Activist
Advocates for an eco-conscious lifestyle through education, awareness campaigns, and community action.
10+
Genuine Connection Coach
Helps individuals improve their social skills and develop deeper, more meaningful relationships.
10+
Tech Support GPT
Provides technical support for common software and hardware issues.

