Sample - Stripe API
GET/v1/climate/suppliers

List Climate suppliers

Lists all available Climate suppliers. Use starting_after and ending_before to navigate between result pages, and limit to control the number of suppliers returned.

  • RetriesRetries up to 2×, 500ms backoff, 30s timeout.

4 parameters
ending_beforestringoptional
An object ID cursor that returns the page before the specified supplier. The value can contain up to 5000 characters.
expandarray<string>optional
Specifies response fields to expand; each value can contain up to 5000 characters.
limitintegeroptional
The number of suppliers to return, from 1 to 100. Defaults to 10 when omitted.
starting_afterstringoptional
An object ID cursor that returns the page after the specified supplier. The value can contain up to 5000 characters.

2 status codes
200Returns a list object containing Climate suppliers in `data`, a `has_more` indicator, the list object type, and the list URL.
dataarray<ClimateSupplier>required
has_morebooleanrequired
True if this list has another page of items after this one that can be fetched.
objectstringrequired
String representing the object's type. Objects of the same type share the same value. Always has the value `list`.
Allowed:list
urlstringrequired
The URL where this list can be accessed.
defaultError response.
errorobjectrequired

Error handling

limit must be between 1 and 100 and defaults to 10 when omitted. Use starting_after or ending_before with a supplier object ID to select the page position; each cursor must not exceed 5000 characters.