Use this file to discover all available pages before exploring further.
Ready-to-use code snippets for every Nimble API. Copy, paste, and run.
Prefer not to write code? Install the Nimble
plugin and describe what you
need in plain language — your AI assistant handles the rest. See the
Quickstart Guide for prompt
examples.
from nimble_python import Nimblenimble = Nimble(api_key="YOUR-API-KEY")result = nimble.search( query="latest developments in AI agents", max_results=5, include_answer=True)print(f"AI Answer: {result.answer}")for r in result.results: print(f"- {r.title}: {r.url}")
from nimble_python import Nimblenimble = Nimble(api_key="YOUR-API-KEY")result = nimble.map( url="https://www.example.com", sitemap="include")for link in result.links: print(f"{link.title}: {link.url}")