Hi,
I don't know your informatic skills, but you could start by taking a look at the rather new KEGG rest API.
If your organism is already inside the KEGG database retrieving all its pathways is relatively easy.
Assume your organism is Homo sapiens (Kegg code "hsa"), you just need to open your browser and go to this page (notice the URL).
This example gives you all the pathways AND the human genes associated to them.
To get info about a gene (for instance hsa:10) just go to this page (again, notice how the URL is built).
To get info about a pathway (for instance hsa:10) just go to this page.
You can also retrieve this data using a script, below a simple example in python
import urllib2
url = 'http://rest.kegg.jp/link/hsa/pathway'
data = urllib2.urlopen(url, timeout=20).read()
# Parse it!
If your organism is not inside the KEGG database, you first need to annotate it through KAAS, obtain the KO IDs and then do a search like this (note that there is a limit in the number of KO IDs that you can put in a single URL, so maybe you need to perform more than one search).
Hope this helps...
Thanks, it is pretty helpful, I have another question about how to download a older version KEGG database (Homo sapiens Pathway) like Sep, 2015, really appreciate if anyone knows the answer!
I think would be better to write a new post, if you have additional/different questions. Not many people will read this post since is more than 3 years old.