Adding end points for api definition

Hi,

I need to understand what should my api definition object be when I have say ,

target url - http://httpbin.org/
that has apis like
GET http://httpbin.org/redirect-to
POST http://httpbin.org/response-headers

How do I define this in my api object.

Hello @Mahesh_PS Tyk will proxy requests to your API. So in your case, if you set up an API with a target URL http://httpbin.org/ and an API listen path of /api/httpbin/ then those requests will be accessible like this:

GET {tyk-gateway-host}/api/httpbin/redirect-to
POST {tyk-gateway-host}/api/httpbin/response-headers