We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/apimatic/apimatic-validator-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
transform-via-url-request.md•679 B
# Transform Via Url Request
This structure puts together the URL of the file to be transformed, along with the desired export format.
## Structure
`TransformViaUrlRequest`
## Fields
| Name | Type | Tags | Description |
| --- | --- | --- | --- |
| `url` | `string` | Required | The URL for the API specification file.<br><br>**Note:** This URL should be publicly accessible. |
| `exportFormat` | [`ExportFormats`](../../doc/models/export-formats.md) | Required | The structure contains API specification formats that Transformer can convert to. |
## Example (as JSON)
```json
{
"url": "https://petstore.swagger.io/v2/swagger.json",
"export_format": "APIMATIC"
}
```