# Manually enter API details

If you’re building a backend application and don’t have it all documented yet, you can just manually enter your API information.

  1. On the Test Suites page, click on the "Create" button

  2. Click on the "Enter API Details" button

  3. Enter basic details about your API like URL, headers, path/query params, request body here

Some things to keep in mind while entering your API information

  • You can use domain, IP or localhost for URL
  • Headers, query params, path params and request body should be valid JSON
  • Path params should be specified in the URL using single curly braces, like this:
    https://foobar.com/create/user/{user-id}
    Example value for path params should be specified in the "Path Params" input as a JSON like this:
    { "user-id": 12345 }
  • Headers can be used to specify things like auth related information like Bearer tokens, JWT tokens, session cookies, etc. We recommend using variables for this.
  • We currently support only JSON, formdata and url encoded bodies. gRPC and GraphQL are in development and will be supported soon.
  1. Click on "Generate" to start test generation. This typically takes 3-4 minutes based on how big the API payload is.