Work with this as data
Every API here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for apis
7 MCP tools reach this
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/packet-host-payment-methods-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
OpenAPI Specification
openapi: 3.2.0
info:
contact:
email: support@equinixmetal.com
name: Equinix Metal API Team
description: '# Introduction
Equinix Metal provides a RESTful HTTP API which can be reached at .'
license:
name: Equinix Metal
url: https://metal.equinix.com/legal/
termsOfService: https://metal.equinix.com/legal/
title: Metal Payment Methods API
version: 1.0.0
servers:
- url: https://api.equinix.com/metal/v1
security:
- x_auth_token: []
tags:
- description: Payment Method Management
externalDocs:
url: https://metal.equinix.com/developers/docs/billing/payment-methods/
name: Payment Methods
paths:
/payment-methods/{id}:
delete:
description: Deletes the payment method.
operationId: deletePaymentMethod
parameters:
- description: Payment Method UUID
in: path
name: id
required: true
schema:
format: uuid
type: string
responses:
'204':
description: no content
'401':
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
description: unauthorized
'404':
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
description: not found
summary: Delete the payment method
tags:
- Payment Methods
get:
description: Returns a payment method
operationId: findPaymentMethodById
parameters:
- description: Payment Method UUID
in: path
name: id
required: true
schema:
format: uuid
type: string
- description: 'Nested attributes to include. Included objects will return their full
attributes. Attribute names can be dotted (up to 3 levels) to included deeply
nested objects.'
explode: false
in: query
name: include
schema:
items:
type: string
type: array
style: form
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/PaymentMethod'
description: ok
'401':
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
description: unauthorized
'404':
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
description: not found
summary: Retrieve a payment method
tags:
- Payment Methods
put:
description: Updates the payment method.
operationId: updatePaymentMethod
parameters:
- description: Payment Method UUID
in: path
name: id
required: true
schema:
format: uuid
type: string
- description: 'Nested attributes to include. Included objects will return their full
attributes. Attribute names can be dotted (up to 3 levels) to included deeply
nested objects.'
explode: false
in: query
name: include
schema:
items:
type: string
type: array
style: form
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/PaymentMethodUpdateInput'
description: Payment Method to update
required: true
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/PaymentMethod'
description: ok
'401':
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
description: unauthorized
'404':
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
description: not found
'422':
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
description: unprocessable entity
summary: Update the payment method
tags:
- Payment Methods
components:
schemas:
Error:
description: Error responses are included with 4xx and 5xx HTTP responses from the API service. Either "error" or "errors" will be set.
properties:
error:
description: A description of the error that caused the request to fail.
type: string
errors:
description: A list of errors that contributed to the request failing.
items:
description: An error message that contributed to the request failing.
type: string
type: array
type: object
PaymentMethodBillingAddress:
example:
street_address: street_address
country_code_alpha2: country_code_alpha2
postal_code: postal_code
properties:
country_code_alpha2:
type: string
postal_code:
type: string
street_address:
type: string
type: object
PaymentMethod:
example:
projects:
- href: href
- href: href
created_at: 2000-01-23 04:56:07+00:00
billing_address:
street_address: street_address
country_code_alpha2: country_code_alpha2
postal_code: postal_code
card_type: card_type
cardholder_name: cardholder_name
type: type
created_by_user:
href: href
expiration_year: expiration_year
default: true
updated_at: 2000-01-23 04:56:07+00:00
organization:
href: href
expiration_month: expiration_month
name: name
id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
email: email
properties:
billing_address:
$ref: '#/components/schemas/PaymentMethodBillingAddress'
card_type:
type: string
cardholder_name:
type: string
created_at:
format: date-time
type: string
created_by_user:
$ref: '#/components/schemas/Href'
default:
type: boolean
email:
type: string
expiration_month:
type: string
expiration_year:
type: string
id:
format: uuid
type: string
name:
type: string
organization:
$ref: '#/components/schemas/Href'
projects:
items:
$ref: '#/components/schemas/Href'
type: array
type:
type: string
updated_at:
format: date-time
type: string
type: object
Href:
example:
href: href
properties:
href:
type: string
required:
- href
type: object
PaymentMethodUpdateInput:
example:
expiration_year: 0
default: true
expiration_month: expiration_month
name: name
billing_address: '{}'
cardholder_name: cardholder_name
properties:
billing_address:
type: object
cardholder_name:
type: string
default:
type: boolean
expiration_month:
type: string
expiration_year:
type: integer
name:
type: string
type: object
securitySchemes:
x_auth_token:
description: 'HTTP header containing the User or Project API key that will be used to authenticate the request.
'
in: header
name: X-Auth-Token
type: apiKey
x-displayName: X-Auth-Token
x-tagGroups:
- name: Accounts and Organization
tags:
- Authentication
- Emails
- Invitations
- Memberships
- Organizations
- OTPs
- PasswordResetTokens
- PaymentMethods
- Projects
- SSHKeys
- SupportRequest
- TransferRequests
- TwoFactorAuth
- Users
- UserVerificationTokens
- name: Services and Billing
tags:
- Events
- Facilities
- Incidents
- Invoices
- Licenses
- Metros
- Plans
- Usages
- name: Servers
tags:
- Devices
- Batches
- Capacity
- HardwareReservations
- OperatingSystems
- Ports
- SelfServiceReservations
- SpotMarket
- Userdata
- Volumes
- name: Networking
tags:
- BGP
- Interconnections
- IPAddresses
- MetalGateways
- VLANs
- VRFs