Skip to main content
GET
/
api
/
v1
/
enterprise
/
endpoints
List partner endpoints
curl --request GET \
  --url https://studio.x402layer.cc/api/v1/enterprise/endpoints \
  --header 'X-Enterprise-Key: <api-key>'
{
  "endpoints": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "slug": "<string>",
      "title": "<string>",
      "description": "<string>",
      "url": "<string>",
      "chain": "<string>",
      "price_per_request": 123,
      "owner_credits": 123,
      "is_active": true,
      "created_at": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {
    "page": 123,
    "limit": 123,
    "total": 123,
    "pages": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.x402layer.cc/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-Enterprise-Key
string
header
required

Enterprise partner API key with sgl_ent_ prefix. Create keys in the Enterprise Dashboard under API Keys.

Query Parameters

page
integer
default:1

Page number

limit
integer
default:50

Results per page

Required range: x <= 100

Response

Paginated endpoint list

endpoints
object[]
pagination
object