get_mobile_app_development_service_page
perfectiongeeks.comRetrieves structured mobile app development service-page details for a city from https://www.perfectiongeeks.com, including metadata, headings, service-table content, FAQs, and company statistics. Returns input_not_found when the city has no dedicated page.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_mobile_app_development_service_page?
Retrieves structured mobile app development service-page details for a city from https://www.perfectiongeeks.com, including metadata, headings, service-table content, FAQs, and company statistics. Returns input_not_found when the city has no dedicated page. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass city and get the result back without maintaining a scraper.
Response
{
"page": {
"url": "<string>",
"city": "<string>",
"faqs": [
{
"answer": "<string>",
"question": "<string>"
}
],
"title": "<string>",
"heading": "<string>",
"keywords": [
"<string>"
],
"description": "<string>",
"company_stats": [
{
"label": "<string>",
"value": "<string>"
}
],
"services_table": {
"rows": [
[
"<string>"
]
],
"headers": [
"<string>"
],
"heading": "<string>",
"description": "<string>"
}
},
"status": "<string>",
"input_city": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/4bf0ca45-292d-4140-84a1-26b4da6a4c82/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "4bf0ca45-292d-4140-84a1-26b4da6a4c82",
"variables": {
"city": "cairo"
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="4bf0ca45-292d-4140-84a1-26b4da6a4c82") — the "get_mobile_app_development_service_page" function, which retrieves structured mobile app development service-page details for a city from https://www.perfectiongeeks.com, including metadata, headings, service-table content, FAQs, and company statistics. Returns input_not_found when the city has no dedicated page.. It takes city (str). Return the result as structured JSON.