> For the complete documentation index, see [llms.txt](https://docs.validationcloud.io/v1/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.validationcloud.io/v1/about/admin-api-keys/endpoints.md).

# Endpoints

## List endpoints

> List the calling team's endpoints. Deleted endpoints are never returned.

```json
{"openapi":"3.1.0","info":{"title":"Validation Cloud Node API — Admin API","version":"1.0.0"},"servers":[{"url":"/admin/v1"}],"security":[{"AdminApiKey":[]}],"components":{"securitySchemes":{"AdminApiKey":{"description":"Admin API key under the `ApiKey` scheme: `Authorization: ApiKey vc_adm_...`. Each key is bound to one team and carries a READ or WRITE scope; the usage endpoints require only READ.","in":"header","name":"Authorization","type":"apiKey"}},"schemas":{"admin.endpointListResponse":{"properties":{"endpoints":{"items":{"$ref":"#/components/schemas/admin.endpointResponse"},"type":"array","uniqueItems":false}},"type":"object"},"admin.endpointResponse":{"properties":{"api_key":{"type":"string"},"chain":{"type":"string"},"enabled":{"type":"boolean"},"id":{"format":"uuid","type":"string"},"name":{"type":"string"},"network":{"type":"string"},"urls":{"$ref":"#/components/schemas/admin.endpointURLs"}},"type":"object"},"admin.endpointURLs":{"properties":{"https":{"type":"string"},"wss":{"type":"string"}},"type":"object"},"admin.errorEnvelope":{"properties":{"error":{"$ref":"#/components/schemas/admin.errorBody"}},"type":"object"},"admin.errorBody":{"properties":{"code":{"enum":["unauthorized","forbidden","invalid_request","not_found","endpoint_limit_reached","plan_not_eligible","rate_limited","internal_error"],"type":"string"},"message":{"type":"string"}},"type":"object"}}},"paths":{"/endpoints":{"get":{"description":"List the calling team's endpoints. Deleted endpoints are never returned.","responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/admin.endpointListResponse"}}},"description":"OK"},"401":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/admin.errorEnvelope"}}},"description":"Unauthorized"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/admin.errorEnvelope"}}},"description":"Internal Server Error"}},"summary":"List endpoints","tags":["Endpoints"]}}}}
```

## Create an endpoint

> Mint a new RPC endpoint for the calling team. Subject to the per-team endpoint limit and the team's CU-quota gating (an over-quota team's endpoint is created disabled).

```json
{"openapi":"3.1.0","info":{"title":"Validation Cloud Node API — Admin API","version":"1.0.0"},"servers":[{"url":"/admin/v1"}],"security":[{"AdminApiKey":[]}],"components":{"securitySchemes":{"AdminApiKey":{"description":"Admin API key under the `ApiKey` scheme: `Authorization: ApiKey vc_adm_...`. Each key is bound to one team and carries a READ or WRITE scope; the usage endpoints require only READ.","in":"header","name":"Authorization","type":"apiKey"}},"schemas":{"admin.createEndpointRequest":{"properties":{"chain":{"type":"string"},"name":{"type":"string"},"network":{"type":"string"}},"type":"object"},"admin.endpointResponse":{"properties":{"api_key":{"type":"string"},"chain":{"type":"string"},"enabled":{"type":"boolean"},"id":{"format":"uuid","type":"string"},"name":{"type":"string"},"network":{"type":"string"},"urls":{"$ref":"#/components/schemas/admin.endpointURLs"}},"type":"object"},"admin.endpointURLs":{"properties":{"https":{"type":"string"},"wss":{"type":"string"}},"type":"object"},"admin.errorEnvelope":{"properties":{"error":{"$ref":"#/components/schemas/admin.errorBody"}},"type":"object"},"admin.errorBody":{"properties":{"code":{"enum":["unauthorized","forbidden","invalid_request","not_found","endpoint_limit_reached","plan_not_eligible","rate_limited","internal_error"],"type":"string"},"message":{"type":"string"}},"type":"object"}}},"paths":{"/endpoints":{"post":{"description":"Mint a new RPC endpoint for the calling team. Subject to the per-team endpoint limit and the team's CU-quota gating (an over-quota team's endpoint is created disabled).","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/admin.createEndpointRequest","description":"Endpoint to create","summary":"request"}}},"description":"Endpoint to create","required":true},"responses":{"201":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/admin.endpointResponse"}}},"description":"Created"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/admin.errorEnvelope"}}},"description":"Bad Request"},"401":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/admin.errorEnvelope"}}},"description":"Unauthorized"},"403":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/admin.errorEnvelope"}}},"description":"Forbidden"},"409":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/admin.errorEnvelope"}}},"description":"Conflict"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/admin.errorEnvelope"}}},"description":"Internal Server Error"}},"summary":"Create an endpoint","tags":["Endpoints"]}}}}
```

## Get an endpoint

> Fetch a single endpoint owned by the calling team. An endpoint owned by another team or one that has been deleted returns 404, indistinguishable from one that never existed.

```json
{"openapi":"3.1.0","info":{"title":"Validation Cloud Node API — Admin API","version":"1.0.0"},"servers":[{"url":"/admin/v1"}],"security":[{"AdminApiKey":[]}],"components":{"securitySchemes":{"AdminApiKey":{"description":"Admin API key under the `ApiKey` scheme: `Authorization: ApiKey vc_adm_...`. Each key is bound to one team and carries a READ or WRITE scope; the usage endpoints require only READ.","in":"header","name":"Authorization","type":"apiKey"}},"schemas":{"admin.endpointResponse":{"properties":{"api_key":{"type":"string"},"chain":{"type":"string"},"enabled":{"type":"boolean"},"id":{"format":"uuid","type":"string"},"name":{"type":"string"},"network":{"type":"string"},"urls":{"$ref":"#/components/schemas/admin.endpointURLs"}},"type":"object"},"admin.endpointURLs":{"properties":{"https":{"type":"string"},"wss":{"type":"string"}},"type":"object"},"admin.errorEnvelope":{"properties":{"error":{"$ref":"#/components/schemas/admin.errorBody"}},"type":"object"},"admin.errorBody":{"properties":{"code":{"enum":["unauthorized","forbidden","invalid_request","not_found","endpoint_limit_reached","plan_not_eligible","rate_limited","internal_error"],"type":"string"},"message":{"type":"string"}},"type":"object"}}},"paths":{"/endpoints/{id}":{"get":{"description":"Fetch a single endpoint owned by the calling team. An endpoint owned by another team or one that has been deleted returns 404, indistinguishable from one that never existed.","parameters":[{"description":"Endpoint UUID","in":"path","name":"id","required":true,"schema":{"format":"uuid","type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/admin.endpointResponse"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/admin.errorEnvelope"}}},"description":"Bad Request"},"401":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/admin.errorEnvelope"}}},"description":"Unauthorized"},"404":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/admin.errorEnvelope"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/admin.errorEnvelope"}}},"description":"Internal Server Error"}},"summary":"Get an endpoint","tags":["Endpoints"]}}}}
```

## Delete an endpoint

> Soft-delete the endpoint. After deletion it is invisible: subsequent gets return 404 and it never reappears in list.

```json
{"openapi":"3.1.0","info":{"title":"Validation Cloud Node API — Admin API","version":"1.0.0"},"servers":[{"url":"/admin/v1"}],"security":[{"AdminApiKey":[]}],"components":{"securitySchemes":{"AdminApiKey":{"description":"Admin API key under the `ApiKey` scheme: `Authorization: ApiKey vc_adm_...`. Each key is bound to one team and carries a READ or WRITE scope; the usage endpoints require only READ.","in":"header","name":"Authorization","type":"apiKey"}},"schemas":{"admin.errorEnvelope":{"properties":{"error":{"$ref":"#/components/schemas/admin.errorBody"}},"type":"object"},"admin.errorBody":{"properties":{"code":{"enum":["unauthorized","forbidden","invalid_request","not_found","endpoint_limit_reached","plan_not_eligible","rate_limited","internal_error"],"type":"string"},"message":{"type":"string"}},"type":"object"}}},"paths":{"/endpoints/{id}":{"delete":{"description":"Soft-delete the endpoint. After deletion it is invisible: subsequent gets return 404 and it never reappears in list.","parameters":[{"description":"Endpoint UUID","in":"path","name":"id","required":true,"schema":{"format":"uuid","type":"string"}}],"responses":{"204":{"description":"No Content"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/admin.errorEnvelope"}}},"description":"Bad Request"},"401":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/admin.errorEnvelope"}}},"description":"Unauthorized"},"403":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/admin.errorEnvelope"}}},"description":"Forbidden"},"404":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/admin.errorEnvelope"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/admin.errorEnvelope"}}},"description":"Internal Server Error"}},"summary":"Delete an endpoint","tags":["Endpoints"]}}}}
```

## Disable an endpoint

> Set the endpoint disabled. Idempotent — disabling an already-disabled endpoint is a no-op success.

```json
{"openapi":"3.1.0","info":{"title":"Validation Cloud Node API — Admin API","version":"1.0.0"},"servers":[{"url":"/admin/v1"}],"security":[{"AdminApiKey":[]}],"components":{"securitySchemes":{"AdminApiKey":{"description":"Admin API key under the `ApiKey` scheme: `Authorization: ApiKey vc_adm_...`. Each key is bound to one team and carries a READ or WRITE scope; the usage endpoints require only READ.","in":"header","name":"Authorization","type":"apiKey"}},"schemas":{"admin.endpointResponse":{"properties":{"api_key":{"type":"string"},"chain":{"type":"string"},"enabled":{"type":"boolean"},"id":{"format":"uuid","type":"string"},"name":{"type":"string"},"network":{"type":"string"},"urls":{"$ref":"#/components/schemas/admin.endpointURLs"}},"type":"object"},"admin.endpointURLs":{"properties":{"https":{"type":"string"},"wss":{"type":"string"}},"type":"object"},"admin.errorEnvelope":{"properties":{"error":{"$ref":"#/components/schemas/admin.errorBody"}},"type":"object"},"admin.errorBody":{"properties":{"code":{"enum":["unauthorized","forbidden","invalid_request","not_found","endpoint_limit_reached","plan_not_eligible","rate_limited","internal_error"],"type":"string"},"message":{"type":"string"}},"type":"object"}}},"paths":{"/endpoints/{id}/disable":{"post":{"description":"Set the endpoint disabled. Idempotent — disabling an already-disabled endpoint is a no-op success.","parameters":[{"description":"Endpoint UUID","in":"path","name":"id","required":true,"schema":{"format":"uuid","type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/admin.endpointResponse"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/admin.errorEnvelope"}}},"description":"Bad Request"},"401":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/admin.errorEnvelope"}}},"description":"Unauthorized"},"403":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/admin.errorEnvelope"}}},"description":"Forbidden"},"404":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/admin.errorEnvelope"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/admin.errorEnvelope"}}},"description":"Internal Server Error"}},"summary":"Disable an endpoint","tags":["Endpoints"]}}}}
```

## Enable an endpoint

> Set the endpoint enabled. Idempotent — enabling an already-enabled endpoint is a no-op success.

```json
{"openapi":"3.1.0","info":{"title":"Validation Cloud Node API — Admin API","version":"1.0.0"},"servers":[{"url":"/admin/v1"}],"security":[{"AdminApiKey":[]}],"components":{"securitySchemes":{"AdminApiKey":{"description":"Admin API key under the `ApiKey` scheme: `Authorization: ApiKey vc_adm_...`. Each key is bound to one team and carries a READ or WRITE scope; the usage endpoints require only READ.","in":"header","name":"Authorization","type":"apiKey"}},"schemas":{"admin.endpointResponse":{"properties":{"api_key":{"type":"string"},"chain":{"type":"string"},"enabled":{"type":"boolean"},"id":{"format":"uuid","type":"string"},"name":{"type":"string"},"network":{"type":"string"},"urls":{"$ref":"#/components/schemas/admin.endpointURLs"}},"type":"object"},"admin.endpointURLs":{"properties":{"https":{"type":"string"},"wss":{"type":"string"}},"type":"object"},"admin.errorEnvelope":{"properties":{"error":{"$ref":"#/components/schemas/admin.errorBody"}},"type":"object"},"admin.errorBody":{"properties":{"code":{"enum":["unauthorized","forbidden","invalid_request","not_found","endpoint_limit_reached","plan_not_eligible","rate_limited","internal_error"],"type":"string"},"message":{"type":"string"}},"type":"object"}}},"paths":{"/endpoints/{id}/enable":{"post":{"description":"Set the endpoint enabled. Idempotent — enabling an already-enabled endpoint is a no-op success.","parameters":[{"description":"Endpoint UUID","in":"path","name":"id","required":true,"schema":{"format":"uuid","type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/admin.endpointResponse"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/admin.errorEnvelope"}}},"description":"Bad Request"},"401":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/admin.errorEnvelope"}}},"description":"Unauthorized"},"403":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/admin.errorEnvelope"}}},"description":"Forbidden"},"404":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/admin.errorEnvelope"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/admin.errorEnvelope"}}},"description":"Internal Server Error"}},"summary":"Enable an endpoint","tags":["Endpoints"]}}}}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.validationcloud.io/v1/about/admin-api-keys/endpoints.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
