In most cases, your ReadyAPI project contains at least one API, but you can add more if needed.
There are three main ways to add an API to the project:
Use an API definition (Swagger/OpenAPI, GraphQL, AsyncAPI, gRPC and so on) to add an API to the project. You can import an API from a local file, URL address, or directly from SwaggerHub.
You create a REST or Kafka API from scratch.
You add an API by recording requests while you are working with the service.
To import API from the definition:
Click
next to the APIs node and select Import API Definition:
— or —
Right-click the APIs section in the Navigator and select Import API Definition.
Use the Import API Definition dialog to import the definition:
Tab
Description
My Computer or URL
Import the definition from a definition file: Swagger/OpenAPI, GraphQL, AsyncAPI (Kafka), gRPC, WSDL, or WADL.
SwaggerHub
Import the definition from SwaggerHub.
OAS 3.1
Displays OpenAPI Specification version 3.1 definitions.
Note
Some special characters like {,} will be replaced in automatically generated test case names derived from request URLs. This is because of compatibility issues with Groovy scripts.
To import an API from a definition file, specify the path to a local file, or its URL in the Source field and click Import API:
![]() |
ReadyAPI defines the definition type automatically. If you need to specify advanced options, select the needed type manually from the Type drop-down list.
Below, you can find descriptions of the Advanced options for different definition types:
Default Media Type - Specifies the media type that ReadyAPI will use for the requests in which no media type is specified.
Important
When you load a large definition, ReadyAPI may fail to save the project because of the lack of Java heap space. To fix the issue, you can disable creating request samples.
Endpoint - Specify an endpoint to be added to the service endpoints.
Create sample requests for all operations - Creates sample requests for all WSDL operations.
Create a test case for the imported WSDL - Generate test cases for each operation in WSDL.
Create a virtual service for the imported WSDL - Creates a virtual API based on the imported WSDL.
Create a test case for the imported WADL - Select this option if you want ReadyAPI to generate test cases
There are currently no advanced options for AsyncAPI definitions.
There are currently no advanced options for gRPC definitions.
Important
ReadyAPI supports SwaggerHub SaaS and SwaggerHub On‑Premise 1.23.0-46 or later.
Use the SwaggerHub tab to import public or private definitions from SwaggerHub:
Select a definition or definitions that you want to add to your project.
My API contains APIs created by or shared with the SwaggerHub account that you have added to ReadyAPI. If you haven't added an account, click Log In to SwaggerHub.
Public API contains all the APIs in SwaggerHub that you have access to.
Tip
Use search and filter functionality to find the APIs you need.
Select versions of definitions that will be imported. The default version (marked with
) of the definition is selected by default:
Click Import API.
You can also publish your API definition to SwaggerHub or SwaggerHub On-Premises. See Export to SwaggerHub for details.
If you cannot connect to SwaggerHub using your credentials, try regenerating API keys in SwaggerHub:
Open the account settings in SwaggerHub:
Switch to the API Keys tab and click Regenerate:
Edit your SwaggerHub account info in ReadyAPI and enter the new API key:
Important
Please note that, if you use these keys to access SwaggerHub’s public API, you need to update them in your code, as well.
You can directly import the GraphQL API from the running service by providing the URL of the GraphQL endpoint. There's no requirement for a file with a predefined schema.
To import, determine the URL of the GraphQL endpoint. By default, the endpoint is set to "/graphql."
Ensure that the introspection query is enabled on the server. This is necessary for automatic schema creation.
The schema will be generated automatically based on the provided URL and the enabled introspection query.
The URL of the GraphQL endpoint will be added to the API definition.
Click
next to the APIs node and select Create API Definition:
— or —
Right-click the APIs section in the Navigator and select Create API Definition.
Specify the name of the API and protocol and click Create API:
To learn how to populate the newly created API, see Managing REST APIs and Managing Kafka APIs.
To add an XML-RPC service to your project:
Right-click the APIs node and select New XML-RPC Service from URL:
In the subsequent dialog, enter your service
.rem
URL:To create sample requests, select Create Requests.
Click OK.