- Home
- API MCP Server
- tools
- api
- API Crawler
API Crawler
List the set of api_crawler in a namespace.
| Tool | Description |
|---|---|
f5xc-api-api-api-crawler-create | Create API Crawler. |
f5xc-api-api-api-crawler-get | GET API crawler. |
f5xc-api-api-api-crawler-list | List API Crawler. |
f5xc-api-api-api-crawler-update | Replace API crawler. |
f5xc-api-api-api-crawler-delete | DELETE API Crawler. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
metadata.namespace | Namespace | - |
name | Name | - |
namespace | Namespace | - |
metadata.name | Name | - |
Query Parameters
Section titled “Query Parameters”| Parameter | Description | Example |
|---|---|---|
response_format | The format in which the configuration object is to be fetched. This could be for example | - |
label_filter | A LabelSelectorType expression that every item in list response will satisfy. | - |
report_fields | The report_fields parameter | - |
report_status_fields | The report_status_fields parameter | - |
Configuration Choices
Section titled “Configuration Choices”This resource includes mutually exclusive configuration options:
secret_info_oneof
Section titled “secret_info_oneof”| Option | Description | Recommended |
|---|---|---|
spec.domains[].simple_login.password.blindfold_secret_info | - | |
spec.domains[].simple_login.password.clear_secret_info | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with API Crawler resources:
Create API Crawler
Section titled “Create API Crawler”“Create a api-crawler named ‘example’ in the ‘production’ namespace”
List API Crawlers
Section titled “List API Crawlers”“List all api-crawlers in the ‘production’ namespace”
Get API Crawler Details
Section titled “Get API Crawler Details”“Get details of the api-crawler named ‘example’ in namespace ‘production‘“
CURL Examples
Section titled “CURL Examples”# List resourcescurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/api_crawlers" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json"
# Get specific resourcecurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/api_crawlers/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json"
# Create resourcecurl -X POST "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/api_crawlers" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @api_crawler.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/api_crawlers/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"