{ "aid": "gofundme.com:main-2.0.0", "name": "GoFundMe Pro API", "type": "Index", "description": "

GoFundMe Pro API

\n

Welcome to the GoFundMe Pro API (2.0.0), a powerful toolset that empowers innovative and creative minds to engineer the world for good. This documentation walks through the API’s latest endpoints.

\n

GoFundMe Pro APIs are crafted around REST and the REST architectural style to provide developers with a stateless and language-­agnostic interface. The GoFundMe Pro API leverages HTTP verbs and response codes, OAuth2 authentication, and resource-­oriented URLs.

\n

Currently, the GoFundMe Pro API only supports JSON. All POST/PUT requests required a valid JSON object for the request body.

\n

Errors

\n

The GoFundMe Pro API leverages standard HTTP response status codes for it’s error responses. Error codes are:

\n


\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Error CodeMeaning
400Bad Request: The request was malformed or provided incorrect/incomplete/conflicting parameters. Check the response for more detailed messaging about why the request was incorrect. Do not repeat request.
401Unauthorized: The API does not recognize the request as authorized. API access token may be missing or invalid.
403Forbidden: The API recognizes the authorized API user, but the API user does not have correct permissions to satisfy the request.
404Not Found: The resource requested does not exist or was not found.
405Method Not Allowed: Some REST endpoints only accept a subset of valid REST HTTP verbs. This error is sent when an unsupported verb is requested.
429Too Many Requests: The rate limit has been exceeded. See the Rate Limiting section for details on rate limits and response headers.
500Error: The request was valid, but something failed on the server. Additional messages may be available.
503Service Unavailable: The service is temporarily unavailable.
\n

Requests

\n

Authenticating Requests

\n

Most API requests will need to be signed with an Access Token.

\n

Refer to the Resource Documentation for the specific call you are making to see if an access token is required for your request. See this page for a demonstration of usage through a sample app. \n

Filters

\n

We can filter a collection based on a set of input parameters. To do so, we can modify the query string using the parameters listed below.

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ParameterTypeDefaultDescription
withstringN/AThis allows you to include nested related resource. For example, you could request a campaign along with the organization it belongs to and the designation it was allocated to. In this case, with=organization,designation.
per_pageinteger20Set the total number of resources returned per page (Maximum: 100).
pageinteger1Page to return.
sortstringDepends on endpoint\nOrder the resources depending upon their attributes. Examples:\n
    \n
  • created_at: oldest resource will come first
  • \n
  • created_at:desc: newest resource will come first
  • \n
  • last_name:asc,first_name:asc: order resources by last_name in alphabetical order. If same last_name, order by first_name in alphabetical order.
  • \n
\n
fieldsstringDepends on endpointList of resources attributes separated with comma. Narrow the list of attributes returned for each resource.
filterstringNULL\nAllow to filter the list of resources returned. Format is: {association}.{attribute1}{operand}{value} where:
    \n
  • association is the association if this is a nested filter (optional)
  • \n
  • operand is one of the following: <=, >=, <>, !=, =, <, or >. Operand must be url encoded. (Note: if you are filtering on a boolean value, true can be expressed with true or 1. Additionally, false can be expressed with false or 0).
  • \n
  • If filtering on an association, ensure you include the nested resource using the ‘with’ parameter. with | string | NULL | This allows you to include a nested related resource. For example, you could request a collection of campaigns along with the organization they belong to and the designation they were allocated to. In this case, with=organization,designation.
  • \n
\n
\n\n

When filtering, the operand should be one of the following:

\n

<=, >=, <>, !=, =, <, or >. Operand must be url encoded. (Note: if you are filtering on a boolean value, true can be expressed with true or 1. Additionally, false can be expressed with false or 0).

\n

If filtering on an association, ensure you include the nested resource using the ‘with’ parameter. This allows you to include a nested related resource. For example, you could request a collection of campaigns along with the organization they belong to and the designation they were allocated to. In this case, with=organization,designation.

\n

Refer to the sample documentation for the specific call you are making to see which related resource can be fetched.

\n\n

Date and Time Filtering

\n

Unless otherwise noted, all Datetime attributes in API responses will be returned in an ISO8601 compliant format:

\n<>YYYY-MM-DDTHH:mm:ss.sssZ (e.g. 2024-10-05T14:48:00.000Z).

\n

Rate Limiting

\n

The GoFundMe Pro API implements rate limiting to ensure fair usage and maintain service quality for all users. Rate limits are applied on a per-application and per-user basis.

\n

When Rate Limiting Applies

\n

Rate limiting is applied to requests that meet the following conditions:

\n\n

Internal applications are not subject to rate limiting.

\n

Rate Limit Details

\n

By default, the rate limit is:

\n\n

Rate limits may be adjusted dynamically via flags for specific applications or users.

\n

Rate Limit Headers

\n

All API responses include the following headers to help you track your rate limit status:

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
HeaderDescription
X-RateLimit-LimitThe maximum number of requests allowed in the current time window
X-RateLimit-RemainingThe number of requests remaining in the current time window
X-RateLimit-ResetUnix timestamp indicating when the rate limit window resets (only included when limit is exceeded)
Retry-AfterNumber of seconds to wait before retrying (only included in 429 responses)
\n

Handling Rate Limit Errors

\n

When you exceed the rate limit, the API will return a 429 Too Many Requests response with the following structure:

\n
{\n  \"message\": \"Too Many Attempts.\",\n  \"retry_after\": 42\n}
\n

The response will include the Retry-After header indicating how many seconds you should wait before making another request.

\n

Best Practices

\n", "url": "https://raw.githubusercontent.com/jentic/jentic-public-apis/refs/heads/main/apis/openapi/gofundme.com/main/2.0.0/apis.json", "tags": [ "gofundme.com", "main" ], "created": "2026-04-10", "modified": "2026-04-10", "specificationVersion": "0.19", "access": "3rd-Party", "maintainers": [ { "FN": "Jentic", "X-github": "jentic", "url": "https://github.com/jentic" } ], "apis": [ { "aid": "gofundme.com:main-2.0.0", "name": "GoFundMe Pro API", "description": "

GoFundMe Pro API

\n

Welcome to the GoFundMe Pro API (2.0.0), a powerful toolset that empowers innovative and creative minds to engineer the world for good. This documentation walks through the API’s latest endpoints.

\n

GoFundMe Pro APIs are crafted around REST and the REST architectural style to provide developers with a stateless and language-­agnostic interface. The GoFundMe Pro API leverages HTTP verbs and response codes, OAuth2 authentication, and resource-­oriented URLs.

\n

Currently, the GoFundMe Pro API only supports JSON. All POST/PUT requests required a valid JSON object for the request body.

\n

Errors

\n

The GoFundMe Pro API leverages standard HTTP response status codes for it’s error responses. Error codes are:

\n


\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Error CodeMeaning
400Bad Request: The request was malformed or provided incorrect/incomplete/conflicting parameters. Check the response for more detailed messaging about why the request was incorrect. Do not repeat request.
401Unauthorized: The API does not recognize the request as authorized. API access token may be missing or invalid.
403Forbidden: The API recognizes the authorized API user, but the API user does not have correct permissions to satisfy the request.
404Not Found: The resource requested does not exist or was not found.
405Method Not Allowed: Some REST endpoints only accept a subset of valid REST HTTP verbs. This error is sent when an unsupported verb is requested.
429Too Many Requests: The rate limit has been exceeded. See the Rate Limiting section for details on rate limits and response headers.
500Error: The request was valid, but something failed on the server. Additional messages may be available.
503Service Unavailable: The service is temporarily unavailable.
\n

Requests

\n

Authenticating Requests

\n

Most API requests will need to be signed with an Access Token.

\n

Refer to the Resource Documentation for the specific call you are making to see if an access token is required for your request. See this page for a demonstration of usage through a sample app. \n

Filters

\n

We can filter a collection based on a set of input parameters. To do so, we can modify the query string using the parameters listed below.

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ParameterTypeDefaultDescription
withstringN/AThis allows you to include nested related resource. For example, you could request a campaign along with the organization it belongs to and the designation it was allocated to. In this case, with=organization,designation.
per_pageinteger20Set the total number of resources returned per page (Maximum: 100).
pageinteger1Page to return.
sortstringDepends on endpoint\nOrder the resources depending upon their attributes. Examples:\n
    \n
  • created_at: oldest resource will come first
  • \n
  • created_at:desc: newest resource will come first
  • \n
  • last_name:asc,first_name:asc: order resources by last_name in alphabetical order. If same last_name, order by first_name in alphabetical order.
  • \n
\n
fieldsstringDepends on endpointList of resources attributes separated with comma. Narrow the list of attributes returned for each resource.
filterstringNULL\nAllow to filter the list of resources returned. Format is: {association}.{attribute1}{operand}{value} where:
    \n
  • association is the association if this is a nested filter (optional)
  • \n
  • operand is one of the following: <=, >=, <>, !=, =, <, or >. Operand must be url encoded. (Note: if you are filtering on a boolean value, true can be expressed with true or 1. Additionally, false can be expressed with false or 0).
  • \n
  • If filtering on an association, ensure you include the nested resource using the ‘with’ parameter. with | string | NULL | This allows you to include a nested related resource. For example, you could request a collection of campaigns along with the organization they belong to and the designation they were allocated to. In this case, with=organization,designation.
  • \n
\n
\n\n

When filtering, the operand should be one of the following:

\n

<=, >=, <>, !=, =, <, or >. Operand must be url encoded. (Note: if you are filtering on a boolean value, true can be expressed with true or 1. Additionally, false can be expressed with false or 0).

\n

If filtering on an association, ensure you include the nested resource using the ‘with’ parameter. This allows you to include a nested related resource. For example, you could request a collection of campaigns along with the organization they belong to and the designation they were allocated to. In this case, with=organization,designation.

\n

Refer to the sample documentation for the specific call you are making to see which related resource can be fetched.

\n\n

Date and Time Filtering

\n

Unless otherwise noted, all Datetime attributes in API responses will be returned in an ISO8601 compliant format:

\n<>YYYY-MM-DDTHH:mm:ss.sssZ (e.g. 2024-10-05T14:48:00.000Z).

\n

Rate Limiting

\n

The GoFundMe Pro API implements rate limiting to ensure fair usage and maintain service quality for all users. Rate limits are applied on a per-application and per-user basis.

\n

When Rate Limiting Applies

\n

Rate limiting is applied to requests that meet the following conditions:

\n\n

Internal applications are not subject to rate limiting.

\n

Rate Limit Details

\n

By default, the rate limit is:

\n\n

Rate limits may be adjusted dynamically via flags for specific applications or users.

\n

Rate Limit Headers

\n

All API responses include the following headers to help you track your rate limit status:

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
HeaderDescription
X-RateLimit-LimitThe maximum number of requests allowed in the current time window
X-RateLimit-RemainingThe number of requests remaining in the current time window
X-RateLimit-ResetUnix timestamp indicating when the rate limit window resets (only included when limit is exceeded)
Retry-AfterNumber of seconds to wait before retrying (only included in 429 responses)
\n

Handling Rate Limit Errors

\n

When you exceed the rate limit, the API will return a 429 Too Many Requests response with the following structure:

\n
{\n  \"message\": \"Too Many Attempts.\",\n  \"retry_after\": 42\n}
\n

The response will include the Retry-After header indicating how many seconds you should wait before making another request.

\n

Best Practices

\n", "image": "", "baseURL": "https://api.classy.org/2.0", "humanURL": "https://github.com/jentic/jentic-public-apis/tree/main/apis/openapi/gofundme.com/main/2.0.0", "version": "2.0.0", "tags": [ "gofundme.com", "main" ], "properties": [ { "type": "OpenAPI", "name": "OpenAPI definition", "url": "https://raw.githubusercontent.com/jentic/jentic-public-apis/refs/heads/main/apis/openapi/gofundme.com/main/2.0.0/openapi.json", "mediaType": "application/openapi+json" }, { "type": "GitHubRepo", "url": "https://github.com/jentic/jentic-public-apis/tree/main/apis/openapi/gofundme.com/main/2.0.0" } ] } ] }